deleteFile method
Deletes the file at the specified path.
Implementation
@override
Future<void> deleteFile(String path) async {
final file = await getFile(path);
if (await file.exists()) {
await file.delete();
} else {
throw FileSystemException(
"File not found for deletion: $path (resolved to ${file.path})");
}
}