gpt4 book ai didi

vbscript - VBS 如何更改文件夹上的 DateLastModified 属性

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

我需要使用 VB 脚本“触摸”或更新文件夹上的 DateLastModified 属性。

PowerShell 不是一个选项,但我对 PowerShell 是否可能感兴趣。

另外,我不想运行像 GNU touch.exe 这样的外部程序。该脚本将在多台计算机上运行,​​我不能保证会安装 PowerShell 或外部程序。

感谢任何线索或帮助,史蒂夫

ps也在technet上问过。

最佳答案

从这里:

http://www.tek-tips.com/viewthread.cfm?qid=1372273

ModFileDT "c:\rootdir", "folder", "1/01/2007 4:18:02 PM"

Function ModFileDT(strDir, strFileName, DateTime)

Dim objShell, objFolder

Set objShell = CreateObject("Shell.Application")
Set objFolder = objShell.NameSpace(strDir)
objFolder.Items.Item(strFileName).ModifyDate = DateTime
End Function

关于vbscript - VBS 如何更改文件夹上的 DateLastModified 属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10015602/

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