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 |
Tags
- pyhcarm
- PyCharm
- queryset
- get_object_or_404
- pythonanywhere
- declare
- templates
- blog
- 델파이
- Push
- github
- GIT
- Delphi
- HTML
- TMS
- c#
- delphi 10.3
- anaconda3
- python3
- MSSQL
- rank
- COMMIT
- dbadvgrid
- python 3.7
- Visual Studio
- 중복제거
- advColumnGrid
- Django
- hackerrank
- 백준
Archives
- Today
- Total
목록directory (2)
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