设置文件的创建日期

发布于 2024-10-14 22:03:25 字数 266 浏览 3 评论 0原文

我有一个充满 mp3 文件的文件夹。它们连续命名为 01.mp386.mp3。它们目前都具有相同的 create_date。我需要它们都有不同的创建日期,最好间隔一天。只要创建日期与文件名编号的方向相同,创建日期是什么并不重要。我对 PHP 非常流利,但这实际上是我唯一的语言。我实际上有一个设置修改日期的 php 脚本,但它不能满足我的需要。我找到了一个实用程序,可以让我更改创建日期,但它是一个 GUI,我一次只能更改 1 个文件。我需要它是一个批处理过程。有什么想法吗?

I have a folder full of mp3 files. They are named consecutively 01.mp3 through 86.mp3. They currently all have the same create_date. I need them to all have different create_dates, preferably a day apart. What the create date is doesn't really matter as long as the create dates are in the same direction as the file name number. I'm pretty fluent in PHP but that's really my only language. I actually got a php script that set the modify date but that doesn't work for what I need. I found a utility that would let me change the create date but it was a gui and I could only change 1 file at a time. I need it to be a batch process. Any ideas?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

蹲墙角沉默 2024-10-21 22:03:26

我找到了一个名为 FileTouch 的实用程序。它允许您通过命令行界面修改创建日期等。我只是使用 Excel 构建了一系列命令,将每个文件的创建日期设置为相隔一天,并将其保存为批处理文件。

... 
FileTouch /C /D 01-01-2010 24.mp3
FileTouch /C /D 01-02-2010 25.mp3
FileTouch /C /D 01-03-2010 26.mp3
...

I found a utility called FileTouch. It lets you modify the create date, among other things, through a command line interface. I just used excel to build a series of commands that set the create date of each file a day apart and saved it as a batch file as so.

... 
FileTouch /C /D 01-01-2010 24.mp3
FileTouch /C /D 01-02-2010 25.mp3
FileTouch /C /D 01-03-2010 26.mp3
...
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文