Delete a file at the given path. Returns true if successful, false otherwise.
@override bool deleteFile(String path) { try { io.File(path).deleteSync(); return true; } catch (_) { return false; } }