7

如何递归删除 Dart 中的整个目录以及所有文件?

例如:

/path/to/project/foo.dart
/path/to/project/remove/all/of/these
4

1 回答 1

14

这比听起来容易。

如果我理解正确,它会是这样的:

import 'dart:io';

main() {
  // Deletes the directory "remove" with all folders and files under it.
  new Directory('remove').delete(recursive: true);
}
于 2012-12-29T14:29:19.177 回答