创建一个目录

Android社区 收藏文章

Use the Directory create() method to create a directory. To create intermediate directories, set the recursive argument to true (default is false).

import 'dart:io';

main() async {
  // Creates dir/ and dir/subdir/.
  var directory = await new Directory('dir/subdir').create(recursive: true);
  print(directory.path);
}
相关标签

扫一扫

在手机上阅读