gpt4 book ai didi

file - 具有相同上次修改日期的常规副本文件

转载 作者:行者123 更新时间:2023-12-04 11:29:11 25 4
gpt4 key购买 nike

嗨,我想将文件从 1 个目录复制到另一个目录,但日期必须相同。所以当 fromdirectory 中的最后修改日期是 14:35 时,我希望它在 todirectory 中是相同的。

我怎样才能使用 groovy 做到这一点?

最佳答案

使用 AntBuilder

new AntBuilder().copy ( file                 : 'path/to/source', 
tofile : 'path/to/destination',
preservelastmodified : 'true' )

使用 Java/Groovy 文件 API
def source = new File ('path/to/source')
def destination = new File ('path/to/destination')

source.withInputStream { is ->
destination << is
}

destination.lastModified = source.lastModified()

关于file - 具有相同上次修改日期的常规副本文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7875503/

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