Unit Filesystem
From Ultibo.org
Return to Unit Reference
Contents
[hide]Description
To be documented
Constants
To be documented
Type definitions
To be documented
Public variables
To be documented
Function declarations
Initialization functions
FileSystem functions (Delphi / FreePascal RTL Equivalent)
Drive functions
[Expand]
function FSSetDriveLabel(ADrive:Byte; const ALabel:String):Boolean; inline;
Description: To be documented
[Expand]
function FSSetDriveSerial(ADrive:Byte; ASerial:LongWord):Boolean; inline;
Description: To be documented
[Expand]
function FSSetCurrentDrive(const ADrive:String):Boolean; inline;
Description: To be documented
File functions
[Expand]
function FSFileOpen(const AFileName:String; AMode:Integer):Integer; inline;
Description: To be documented
[Expand]
function FSFileCreate(const AFileName:String):Integer; inline;
Description: To be documented
[Expand]
function FSDeleteFile(const AFileName:String):Boolean; inline;
Description: To be documented
[Expand]
function FSRenameFile(const AOldName,ANewName:String):Boolean; inline;
Description: To be documented
[Expand]
function FSFileSeek(AHandle,AOffset,AOrigin:Integer):Integer; inline;
Description: To be documented
[Expand]
function FSFileExists(const AFileName:String):Boolean; inline;
Description: To be documented
[Expand]
function FSFileGetAttr(const AFileName:String):Integer; inline;
Description: To be documented
[Expand]
function FSFileSetAttr(const AFileName:String; AAttr:Integer):Integer; inline;
Description: To be documented
[Expand]
function FSFileSetDate(AHandle:Integer; AAge:Integer):Integer; inline;
Description: To be documented
[Expand]
function FSFileRead(AHandle:Integer; var ABuffer; ACount:Integer):Integer; inline;
Description: To be documented
[Expand]
function FSFileWrite(AHandle:Integer; const ABuffer; ACount:Integer):Integer; inline;
Description: To be documented
Directory functions
[Expand]
function FSRenameDir(const AOldName,ANewName:String):Boolean; inline;
Description: To be documented
[Expand]
function FSSetCurrentDir(const ADirName:String):Boolean; inline;
Description: To be documented
[Expand]
function FSDirectoryExists(const ADirName:String):Boolean; inline;
Description: To be documented
Search functions
[Expand]
function FSFindFirst(const APath:String; AAttr:Integer; var ASearchRec:TSearchRec):Integer; inline;
Description: To be documented
[Expand]
function FSFindNext(var ASearchRec:TSearchRec):Integer; inline;
Description: To be documented
Additional functions
[Expand]
function FSFileCopy(const ASourceFile,ADestFile:String; AFailIfExists:Boolean):Boolean; inline;
Description: To be documented
[Expand]
function FSFileCopyEx(const ASourceFile,ADestFile:String; AFailIfExists:Boolean; AUseSourceDate:Boolean; ADestDate:Integer; AUseSourceAttr:Boolean; ADestAttr:Integer):Boolean; inline;
Description: To be documented
[Expand]
function FSGetShortName(const AFileName:String):String; inline;
Description: To be documented
[Expand]
function FSGetLongName(const AFileName:String):String; inline;
Description: To be documented
[Expand]
function FSGetTrueName(const AFileName:String):String; inline;
Description: To be documented
Extended functions
[Expand]
function FSFileSeekEx(AHandle:Integer; const AOffset:Int64; AOrigin:Integer):Int64; inline;
Description: To be documented
[Expand]
function FSFileAgeEx(const AFileName:String):TFileTime; inline;
Description: To be documented
[Expand]
function FSFileSetDateEx(AHandle:Integer; AAge:TFileTime):Integer; inline;
Description: To be documented
[Expand]
function FSGetFileTime(AHandle:Integer; ACreateTime,AAccessTime,AWriteTime:PFileTime):Boolean; inline;
Description: To be documented
[Expand]
function FSSetFileTime(AHandle:Integer; ACreateTime,AAccessTime,AWriteTime:PFileTime):Boolean; inline;
Description: To be documented
[Expand]
function FSFindFirstEx(const APath:String; var ASearchRec:TFileSearchRec):Integer; inline;
Description: To be documented
[Expand]
function FSFindNextEx(var ASearchRec:TFileSearchRec):Integer; inline;
Description: To be documented
[Expand]
procedure FSFindCloseEx(var ASearchRec:TFileSearchRec); inline;
Description: To be documented
Return to Unit Reference