You use CHKFILE to check if the file exists. It follows this syntax... <Boolean>=CHKFILE("<Filetype:><Filename>") The function will return either true or false, so it's suggested you place it in a conditional, like this... IF CHKFILE("TXT:SAVEDATA") THEN NAME$=LOAD("TXT:SAVEDATA",FALSE) ENDIF