FileExists /File I/O

bool FileExists(string fileName)

Returns true if the file exists.

if (FileExists(GetExternalStorageDirectory() + "my_file.txt")
{
    print("my file does exist! Yey!");
}