ProcessPath
Adam Boduch
ProcessPath
Moduł: FileCtrl
program Foo;
uses
Dialogs, FileCtrl;
var
S : String;
Drive : Char;
Path, FileName : String;
begin
if PromptForFileName(S) then
begin
ProcessPath(S, Drive, Path, FileName);
ShowMessage('Drive: ' + Drive + #13 +
'Path: ' + Path + #13 +
'FileName: ' + FileName
);
end;
end.
Po uruchomieniu programu, użytkownik zostanie poproszony o wskazanie pliku. Następnie na podstawie ścieżki, okno ShowMessage wyświetli informacje o wskazanym pliku.
Parametry Drive, DirPart oraz FilePart są zwracane przez referencję
Zobacz też: