gpt4 book ai didi

gradle delete intellij IDEA out 目录

转载 作者:行者123 更新时间:2023-12-03 03:40:00 25 4
gpt4 key购买 nike

我将 Intellij IDEA 和 gradle 用于多模块开发环境。
Intellij 默认在 gradle 模块中为输出编译路径创建名为“out”的目录。
所以有时我想清理整个项目。
我为此主题配置 build.gradle 并覆盖 clean 任务,但不起作用。

task clean {
doLast {
delete 'build', 'target', fileTree("${projectDir}") { include '**/out' }
}
}

实际上,我想删除所有名为“out”的子目录。
如何解决这个问题?

最佳答案

如果要删除“out”部分,可以使用任务

task makePretty(type: Delete) {
delete 'out'
}

有关更多信息,您可以阅读本教程: How to delete an empty directory (or the directory with all contents recursively) in gradle?

关于gradle delete intellij IDEA out 目录,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48904611/

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