gpt4 book ai didi

groovy - 以相反的顺序从 Groovy 的 eachFile() 返回文件列表

转载 作者:行者123 更新时间:2023-12-03 21:48:09 24 4
gpt4 key购买 nike

我正在使用 eachFile() ,但我试图颠倒迭代发生的顺序。我怎么做?现在,它似乎对文件列表进行排序,然后按排序顺序处理每个文件。我基本上想保留排序该列表并从最后开始。

最佳答案

我相信你不能改变 eachFile() 的顺序,但你可以达到预期的效果。

考虑:

new File("desired dir").listFiles().sort{ it.name }.reverse().each { def f ->
println f.name
}

关于groovy - 以相反的顺序从 Groovy 的 eachFile() 返回文件列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16888107/

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