home *** CD-ROM | disk | FTP | other *** search
- --------------------------------------------------------
-
- FNshell_FileExists()
- Params =>
- str file name
- <=
- bool TRUE if file exists,
- FALSE otherwise
-
- No checking is performed on the filename, so
- an error will occur if it isn't legal.
-
- --------------------------------------------------------
-
- FNshell_FileLength()
- Params =>
- str file name
-
- <=
- int length of the specified file
-
- No checking is performed on the filename, so
- an error will occur if it isn't legal.
-
- --------------------------------------------------------
-
- FNshell_FileType()
- Params =>
- str file name
-
- <=
- int file type
-
- Returns the file type of the specified file
- on disk. A full path name must be given
- (especially under RISC-OS 3.1!)
-
- --------------------------------------------------------
-
- FNshell_FileGetDateStamp()
- Params =>
- str file name
-
- <=
- int datestamp
-
- Returns 0 if file not found
-
- --------------------------------------------------------
-
- FNshell_Leaf()
- Params =>
- str file name
-
- <=
- str 'leaf' of filename, i.e the name
- of the actual file, minus the path
-
- --------------------------------------------------------
-
- FNshell_Branch()
- Params =>
- str file name
-
- <=
- str 'branch' of filename, i.e the path
- of the directory containing the file.
- Note that the returned string does not
- include the final '.' character.
-
- --------------------------------------------------------