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 | 31 |
Tags
- python 3.7
- pyhcarm
- Django
- 백준
- python3
- hackerrank
- TMS
- pythonanywhere
- get_object_or_404
- delphi 10.3
- advColumnGrid
- Delphi
- PyCharm
- 델파이
- MSSQL
- queryset
- github
- FastReport
- rank
- GIT
- c#
- Visual Studio
- Push
- anaconda3
- blog
- declare
- HTML
- dbadvgrid
- templates
- COMMIT
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