昨天朋友突然给我发来消息,说他有个文件,文件的创建时间和修改时间,想修改一下,往前提个几天,刚开始给他推荐了几个软件,但是想想一个程序员怎么能用他人的软件呢,于是乎,安排……..
1. 步骤:
新建一个bat文件,在其中添加语句:
1 | @ECHO OFF |
2. 解释:
代码将folder_path路径下的所有dll文件的创建时间和修改时间改成现在的时间。
-command: tells powershell to run the following command and return immediately
ls: list all matching files at the path specified
foreach-object: run the following block on each file that ls found
$_.LastWriteTime = Get-Date: for each file, set the LastWriteTime to the value returned by Get-Date (today’s date and time)
$_.CreationTime = Get-Date: for each file, set the CreationTime to the value returned by Get-Date (today’s date and time)
3. 修改至指定时间:
将.LastWriteTime=Get−Date:改为.LastWriteTime=Get−Date:改为_.LastWriteTime = ‘01/11/2004 22:13:36’:
1 | @ECHO OFF |
4. 递归文件夹中所有文件:
1 | @ECHO OFF |