gpt4 book ai didi

dart - 以递归方式删除Dart中带有文件的整个目录?

转载 作者:行者123 更新时间:2023-12-05 01:13:33 24 4
gpt4 key购买 nike

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

例如:

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

最佳答案

这比听起来容易。

如果我正确理解您的意思,它将是这样的:

import 'dart:io';

main() {
// Deletes the directory "remove" with all folders and files under it.
new Directory('remove').delete(recursive: true);
}

关于dart - 以递归方式删除Dart中带有文件的整个目录?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14082453/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com