| [Overview][Constants][Types][Classes][Procedures and functions][Variables][Index] | 
Set the directory separators to the known directory separators.
Source position: finah.inc line 41
function SetDirSeparators(  | 
const FileName: UNICODESTRING  | 
):UNICODESTRING;  | 
const FileName: RAWBYTESTRING  | 
SetDirSeparators returns FileName with all possible DirSeparators replaced by OSDirSeparator.
None.
  | 
Expand a relative filename to an absolute filename.  | 
|
  | 
Extract the path from a filename.  | 
|
  | 
Extract the drive and directory part of a filename.  | 
Program Example47; { This program demonstrates the SetDirSeparators function } Uses sysutils; Begin Writeln (SetDirSeparators('/pp\bin/win32\ppc386')); End.