일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- 윈도우
- 마이크로소프트
- Excel
- c#
- jQuery
- windows
- 단축키
- MS
- 리포팅서비스
- attr()
- 태그를 입력해 주세요.
- 오라클
- 프로시저
- ASP
- CONVERT()
- 비주얼스튜디오
- MSSQL
- 이클립스
- DataGrid
- microsoft
- 윈폼
- javascript
- SSRS
- 자바스크립트
- IIS
- oracle
- Winform
- aspnet
- 엑셀
- replace()
- Today
- Total
DJ메탈짱™의 Free Style
[ASP.NET] 파일생성(StreamWriter), 폴더생성(CreateDirectory) 본문
// 폴더생성
private void button1_Click(object sender, EventArgs e)
{
string folderUrl = this.textBox1.Text;
string folderNm = "test";
for (inti = 1; i < 1000; i++)
{
Directory.CreateDirectory(folderUrl + "\\"+ folderNm + "_" + i.ToString());
}
this.label3.Text = "Directory Create OK";
}
// 파일생성
private void button2_Click(object sender, EventArgs e)
{
string folderUrl = this.textBox1.Text;
string folderNm = "test";
string dir = folderUrl + "\\" + folderNm; //저장될 디렉토리와 파일명
for (inti = 1; i < 1000; i++)
{
string filename = dir+"_"+i.ToString();
//this.label5.Text = filename + \\text.txt;
FileStream fo = new FileStream(filename + "\\text" + "_" + i.ToString() + ".txt", FileMode.Create);
StreamWriter so = new StreamWriter(fo, System.Text.Encoding.Default);
so.Write(this.textBox1.Text);
so.Close();
}
this.label3.Text = "File Create OK";
}
'일(job) > MS(Microsoft)' 카테고리의 다른 글
[ASP.NET] with DuraBoys - DataSet 엑셀로 다운로드하기 (0) | 2015.12.15 |
---|---|
[ASP.NET] 비주얼스튜디오,VS2010,디자인모드,컨트롤오류 (0) | 2015.12.15 |
[.NET] 팀파운데이션서버(Team Foundation Server), 이미 매핑된 사용자 오류 (0) | 2015.12.14 |
[.NET] 팀 파운데이션서버 (Team Foundation Server) 연결실패, 작업영역, 매핑실패 (0) | 2015.12.14 |
[ASP.NET] App_Code에 추가된 클래스(Class)가 선언이 되지 않을때 (0) | 2015.12.14 |