OSFile

Module for operating on OS files

Procedures

Exists

Check if file exists

PROCEDURE Exists*(filename-: ARRAY OF CHAR): BOOLEAN;

Delete

Try to delete file. Return TRUE on success

PROCEDURE Delete*(filename-: ARRAY OF CHAR): BOOLEAN;

Rename

Try to rename file. Return TRUE on success

PROCEDURE Rename*(oldname-, newname-: ARRAY OF CHAR): BOOLEAN;

ModifyTime

Try to get file access time. Return TRUE on success

PROCEDURE ModifyTime*(VAR time : DateTime.DATETIME; filename-: ARRAY OF CHAR): BOOLEAN;