[Overview][Constants][Types][Procedures and functions][Variables] Reference for unit 'Dos' (#rtl)

FSplit

Split a full-path filename in parts.

Declaration

Source position: dosh.inc line 118

procedure FSplit(

  path: PathStr;

  var dir: DirStr;

  var name: NameStr;

  var ext: ExtStr

);

Description

FSplit splits a full file name into 3 parts : A Path , a Name and an extension (in ext .) The extension is taken to be all letters after the last dot (.). For dos, however, an exception is made when LFNSupport=False , then the extension is defined as all characters after the first dot.

Errors

None.

See also

FSearch

  

Search a file in searchpath

Example

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.