删除文件。
static Future<void> deleteFile(String path) async { File file = File(path); await file.delete(); }