일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- delphi 10.3
- GIT
- c#
- declare
- HTML
- advColumnGrid
- pythonanywhere
- python 3.7
- Push
- Delphi
- 델파이
- python3
- 백준
- TMS
- templates
- blog
- MSSQL
- rank
- pyhcarm
- COMMIT
- get_object_or_404
- Visual Studio
- github
- queryset
- hackerrank
- dbadvgrid
- anaconda3
- 중복제거
- PyCharm
- Django
- Today
- Total
DevHyun
디렉토리 생성 본문
// filePath 변수생성 및 초기값 지정
const string filePath = @"C:\";
// filePath에 만들고자 하는 파일이 없을때
if (File.Exists(filePath) == false)
{
try
{
// 디렉토리 부터 생성
DirectoryInfo di = new DirectoryInfo(DirPath);
if (di.Exists == false)
{
try
{
di.Create();
}
catch
{
MessageBox.Show("디렉토리 생성 실패");
}
}
}
catch
{
//MessageBox.Show("");
}
'C#' 카테고리의 다른 글
Dictionary 활용 (0) | 2023.11.09 |
---|---|
다른 폼 메소드 참조하기 (1) | 2023.11.09 |
클릭 후 드래그로 이동시키기 (0) | 2023.11.09 |
ini 파일 읽고 쓰기 (0) | 2023.11.09 |
프로세스를 종료시키는 방법 (0) | 2023.11.09 |