gpt4 book ai didi

javascript - 咕噜声 : creating a zip file with the current date (AAAA-MM-DD)

转载 作者:数据小太阳 更新时间:2023-10-29 06:01:47 25 4
gpt4 key购买 nike

我一直在寻找一种使用“grunt-contrib-compress”插件来命名带有当前日期的 zip 文件的方法。有办法实现吗?我正确安装了它,并设置如下:

        compress: {
build: {
options: {
archive: './zipped/foo.zip',
mode: 'zip'
},
files: [
{ src: 'build/**'}
]
}
}

我想要一个以当前日期命名的压缩文件,以代替自定义名称“foo”:

2014-09-25.zip

最佳答案

您可以尝试使用 grunt.template.today() ...

   compress: {
build: {
options: {
archive: './zipped/' + grunt.template.today('yyyy-mm-dd') + '.zip',
mode: 'zip'
},
files: [
{ src: 'build/**'}
]
}
}

关于javascript - 咕噜声 : creating a zip file with the current date (AAAA-MM-DD),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26034291/

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