본문 바로가기
Delphi Tip/파일

파일 경로/이름/확장자 등 알아내기

by MonoSoft 2021. 10. 7.
728x90
반응형

파일 경로,이름,확장자 등 알아내기

 

Example code : Extract all of the parts of a full file name 

코드

var

  fullFileName : string;

begin

  // Set up a full file name with drive and path

  fullFileName := `C:\Program Files\Borland\Delphi7\Projects\Unit1.dcu`;

  // Show the component parts of this full name

  ShowMessage(`Drive = `+ExtractFileDrive (fullFileName));

  ShowMessage(`Dir   = `+ExtractFileDir   (fullFileName));

  ShowMessage(`Path  = `+ExtractFilePath  (fullFileName));

  ShowMessage(`Name  = `+ExtractFileName  (fullFileName));

  ShowMessage(`Ext   = `+ExtractFileExt   (fullFileName));

end;

 

실행결과

   Drive = C:

   Dir   = C:\Program Files\Borland\Delphi7\Projects

   Path  = C:\Program Files\Borland\Delphi7\Projects\

   Name  = Unit1.dcu

   Ext   = .dcu

 

728x90
반응형

댓글