1234567891011121314 |
- Program Example12;
- uses Dos;
- { Program to demonstrate the FSplit function. }
- var
- Path,Name,Ext : string;
- begin
- FSplit(ParamStr(1),Path,Name,Ext);
- WriteLn('Splitted ',ParamStr(1),' in:');
- WriteLn('Path : ',Path);
- WriteLn('Name : ',Name);
- WriteLn('Extension: ',Ext);
- end.
|