티스토리 뷰

Delphi

function DeleteFile(const FileName: string): Boolean;

Properties

Type

Visibility

Source

Unit

Parent

function

public

System.SysUtils.pas

System.SysUtils

System.SysUtils

Description

Deletes a file from disk.

DeleteFile deletes the file named by FileName from the disk.

If the file cannot be deleted or does not exist, the function returns False.

Note: DeleteFile can delete a symbolic link from a file or a directory and is the preferred method for deleting symlinks.

 

디스크에서 파일을 삭제합니다.

DeleteFileFileName 에 의해 명명된 파일을 디스크에서 삭제합니다.

파일을 삭제할 수 없거나 존재하지 않으면, 함수는 False를 반환합니다.

참고: DeleteFile은 파일이나 디렉토리에서 symbolic link를 삭제할 수 있으며, symlinks를 삭제할 때 선호되는 메소드입니다.

 

Example

var

  FilePath: string;

  IsExistFile: Boolean;

 

begin

  // 테스트를 위해 파일이 존재한 상태

  FilePath := 'H:\Develop\test\Reference\System.SysUtils.DeleteFile\Test.txt';

  IsExistFile := DeleteFile(FilePath);

 

  // 결과: True

  Writeln(IsExistFile);

 

  IsExistFile := DeleteFile(FilePath);

 

  // 결과: False

  Writeln(IsExistFile);

  Readln;

end.

 

preferred 미국·영국 [prifə́:rd]   영국식   

1. 선취권 있는, 우선의
2.
발탁된, 승진한

prefer (preferred) 미국·영국 [prɪ|f3:(r)]   영국식   중요

(다른 것보다) …을 () 좋아하다, 선호하다

 

출처: http://docwiki.embarcadero.com/Libraries/XE2/en/System.SysUtils.DeleteFile

'프로그래밍 언어 > Delphi' 카테고리의 다른 글

[Reference] System.SizeOf  (0) 2017.04.01
[Reference] System.SysUtils.CompareText  (0) 2017.03.31
[Reference] System.Continue  (0) 2017.03.29
[Reference] System.SysUtils.IntToHex  (0) 2017.03.29
[Reference] System.SysUtils.Date  (0) 2017.03.27
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
Total
Today
Yesterday
링크
«   2025/01   »
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
글 보관함