如何使用 JScript 触摸文件?
有没有办法从 JScript 触摸文件(即更改其修改时间)? FileSystemObject
(ActiveXObject) 中有一个 DateLastModified
属性,但它是只读的。
甚至找不到一个明确的“不,你不能”……
Is there a way to touch a file (i.e. change its modification time) from a JScript? There is a DateLastModified
property in FileSystemObject
(ActiveXObject), but it's read-only.
Couldn't even find a clear "no, you can't" on this...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Shell
对象 (Shell.Application
) 提供读写ModifyDate< /code>
文件属性。以下是如何使用它的示例:
另请参阅有关该主题的嘿,脚本专家!文章:在 VBScript 中使用 Shell 对象修改文件日期。 (示例代码是用 VBScript 编写的,但它应该可以帮助您理解这个想法。)
The
Shell
object (Shell.Application
) provides the read-writeModifyDate
property for files. Here's an example of how you can use it:See also the Hey, Scripting Guy! article on the subject: Using the Shell Object to Modify File Dates in VBScript. (The sample code there is in VBScript, but it should help you get the idea.)