创建文件夹
static void mkdirSync( String path, { bool showLog = true, }) { if (showLog) { Logger.info('mkdir: ', path); } Directory(path).createSync(recursive: true); }