ShellBrowser Delphi Components Documentation
ContentsIndexHome
PreviousUpNext
Jam.Shell.Dialogs.FileOperation.TJamFileOperation.NewFile

Creates a new file.

Syntax
Pascal
class procedure NewFile(const pFileName: TFileName; pOptions: TOperationOptions = soDefault); overload; static;
Parameters 
Description 
const pFileName: TFileName 
The absolute filename of the new file.  
pOptions: TOperationOptions = soDefault 
Optional: The options to use.  
Exceptions 
Description 
EArgumentException 
if pFileName is empty or not absolute.  
if parent folder of pFileName is invalid or if any COM exception occured.  

The following example shows how to create a new file:

  TJamFileOperation.NewFile('C:newfile.txt');