Open the file of PATH$ and read the full text into RESULT$
Open the file PATH$ and write T$
Make the file name of PATH$ NEW$
Get current directory
Set the current directory
Combine BASE$ and PATH$
Combine PATH$ with the current directory
Make GetAbsolutePath$(PATH$) and always add / at the end
Get the file list of DIR$ (FILES compatible)
Create DIR$ (one level only)
Mount the file system to DIR$
Delete PATH$
Change the file name of PATH$ to NAME$
Get file type
TYPE$ | Type |
---|---|
” “ | DAT |
“*” | TXT |
”/” | Directory |
Acquire the filename of PATH$ in PATH$ (DAT:HOGE.GRP,TXT:HOGE.PRG)
Save ARRAY in PATH$
Get the current home directory
Open the file
The following can be used for FLG
reading
writing
appending
creating
Write DAT$ to the file
Read LEN characters from file
Close the file
Check if the file is EOF
Duplicate the file
TRUE if the file is normal
Seek relative to current position in file
Get current file position
Output to standard output
Output by adding a line feed code to standard output
Read LEN characters from standard input
Allocate files
Set function to be executed when writing to file
DEF WRITER FILE,DAT$ OUT ERR
Set internal data of file
Retrieve internal data of file On error -1
Set internal string of file
Get internal string of file Space-time character of error
Set file name
Get file name Space-time character of error
Set EOF flag of file
Setting function called when reading from file
DEF READER FILE,LEN OUT DAT$,ERR
Set function called when reading one line from file
DEF READLN FILE OUT DAT$,ERR
Set function called when file is closed
DEF CLOSE FILE