Full function list
This list covers both Windows and Macintosh 3.1
| Text file functions | |||
|
ReadFile |
|
|
reads entire text file, with optional encryption |
|
WriteFile |
|
|
writes entire text file, with optional encryption |
|
WriteFileUTF8 |
|
|
writes entire text file as UTF8, with optional encryption |
|
ReadFileUTF8 |
|
|
reads entire text file as UTF8, with optional encryption |
|
WriteFileUTF16 |
|
|
writes entire text file as UTF16 |
|
ReadFileUTF16 |
|
|
reads entire text file as UTF16 |
|
AppendFile |
|
|
appends text to end of text file |
|
InsertFile |
|
|
inserts text at start of text file |
|
SetCodePage |
|
|
sets the code page to use in UTF8 conversions |
|
Binary file functions |
|||
|
ReadBinFile |
|
|
reads entire binary file |
|
WriteBinFile |
|
|
writes entire binary file |
|
AppendBinFile |
|
|
appends binary data to end of file |
|
InsertBinFile |
|
|
inserts binary data to start of file |
|
List file functions |
|||
|
baReadList |
|
|
reads list from disk, with optional encryption |
|
baWriteList |
|
|
writes list to disk, with optional encryption |
|
BlowFish encryption functions |
|||
|
baEncryptBF |
|
|
encrypts file, optionally to new file |
|
baDecryptBF |
|
|
decrypts file, optionally to new file |
|
baReadFileBF |
|
|
reads entire encrypted text file |
|
baWriteFileBF |
|
|
writes entire encrypted text file |
|
baIsEncryptedBF |
|
|
returns 1 if file is encrypted |
|
File reading/writing functions |
|||
|
baGetFile |
|
|
opens file |
|
MovePointer |
|
|
moves file pointer |
|
GetPointer |
|
|
returns current file pointer position |
|
SeekTo |
|
|
moves pointer to start of Text |
|
SeekAfter |
|
|
moves pointer after Text |
|
ClearFile |
|
|
deletes everything from file |
|
EndFile |
|
|
deletes everything after current pointer position |
|
CloseFile |
|
|
closes file |
|
ReadText |
|
|
reads text from file |
|
WriteText |
|
|
writes text to file |
|
InsertText |
|
|
inserts text into file |
|
WriteUTF8Header |
|
|
write UTF8 header to file |
|
ReadUTF8Header |
|
|
read UTF8 header from file |
|
ReturnStyle |
|
|
sets the return character style |
|
ReadLine |
|
|
reads next line from file |
|
WriteLine |
|
|
writes line to file |
|
InsertLine |
|
|
inserts line into file |
|
ReadChunck |
|
|
reads the next chunk from file |
|
ReadBin |
|
|
reads data from file |
|
WriteBin |
|
|
writes datato file |
|
InsertBin |
|
|
inserts data into file |
|
ByteOrder |
|
|
sets byte order to use |
|
ReadByte |
|
|
reads signed byte from file |
|
ReadUByte |
|
|
reads unsigned byte from file |
|
WriteByte |
|
|
writes signed byte to file |
|
WriteUByte |
|
|
writes unsigned byte to file |
|
Insertbyte |
|
|
inserts signed byte into file |
|
InsertUByte |
|
|
inserts unsigned byte into file |
|
ReadShort |
|
|
reads signed short from file |
|
ReadUShort |
|
|
reads unsigned short from file |
|
WriteShort |
|
|
writes signed short to file |
|
WriteUShort |
|
|
writes unsigned short to file |
|
InsertShort |
|
|
inserts signed short into file |
|
InsertUShort |
|
|
inserts unsigned short into file |
|
ReadLong |
|
|
reads signed long from file |
|
ReadULong |
|
|
reads unsigned long from file |
|
WriteLong |
|
|
writes signed long to file |
|
WriteULong |
|
|
writes unsigned long to file |
|
InsertLong |
|
|
inserts signed long into file |
|
InsertULong |
|
|
inserts unsigned long into file |
| Home |