我需要在复制后用vbscript更改windows文件中的修改时间戳。 感谢
答案 0 :(得分:5)
您可以通过设置FolderItem.ModifyDate属性来完成此操作。一切都被描述为here。 示例代码:
Set objShell = CreateObject("Shell.Application")
Set objFolder = objShell.NameSpace("C:\Scripts")
Set objFolderItem = objFolder.ParseName("File.jpg")
objFolderItem.ModifyDate = "01/01/2008 8:00:00 AM"
答案 1 :(得分:0)