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
- hackerrank
- dbadvgrid
- python3
- delphi 10.3
- GIT
- HTML
- anaconda3
- declare
- pyhcarm
- Visual Studio
- templates
- advColumnGrid
- 백준
- get_object_or_404
- Django
- PyCharm
- c#
- COMMIT
- python 3.7
- MSSQL
- 델파이
- Delphi
- rank
- github
- queryset
- TMS
- blog
- 중복제거
- pythonanywhere
- Push
Archives
- Today
- Total
목록append (1)
DevHyun
txt 파일을 이용하여 log 찍기
예를들어 C:\TEMP 폴더가 있으면 C:\TEMP 폴더에 log.txt 파일을 생성하여 '로그 로그 로그'를 작성하기 만약 i/o Error가 난다면 입력할수있는 글자수가 초과되었을 수도 있음! procedure TForm1.Button1Click(Sender: TObejct); var dir : string; // 경로 txt : TextFile; // 텍스트파일 begin //if Not DirectoryExists('경로') then if Not DirectoryExists('C:\TEMP') then begin //CreateDir('경로'); CreateDir('C:\TEMP'); end; //dir := '텍스트 파일 명을 포함한 경로'; dir := 'C:\TEMP\log.txt'; // ..
Delphi
2020. 10. 29. 10:32