复制文件。
static Future<void> copyFile( String sourcePath, String destinationPath) async { File sourceFile = File(sourcePath); await sourceFile.copy(destinationPath); }