Check if file exists and is readable
bool isFileAccessible(String filePath) { final file = File(filePath); return file.existsSync() && file.statSync().mode & 0x004 != 0; }