Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- get_object_or_404
- hackerrank
- GIT
- pyhcarm
- HTML
- Push
- PyCharm
- declare
- Delphi
- Django
- pythonanywhere
- advColumnGrid
- templates
- github
- COMMIT
- python 3.7
- 백준
- queryset
- dbadvgrid
- delphi 10.3
- 델파이
- python3
- MSSQL
- blog
- Visual Studio
- rank
- 중복제거
- TMS
- c#
- anaconda3
Archives
- Today
- Total
목록directoryexists (1)
DevHyun
Directory 생성 및 존재유무 확인 및 Directory 생성/삭제
예를들어 C:\TEMP Directory가 있으면 제거, 없으면 생성하는 작업을 한다면? Procecure TForm1.Button1Click(Sender: TObject); begin //if DirectoryExists('확인하고자 하는 경로') then if DirectoryExists('C:\TEMP') then begin //RemoveDirectory('경로'); RemoveDirectory('C:\TEMP'); end else begin //CreateDir('경로'); CreateDir('C:\TEMP'); end; end;
Delphi
2020. 10. 29. 10:10