习惯用「按时间分组或排序」来管理文件,然后需要让确认过的文件或文件夹时间直接变成最新;
本质是直接调用 PowerShell 命令;
以下内容保存为 .bat
后缀的文件,然后将要修改的文件或文件夹拖到图标上触发;
会同时修改「创建时间」和「最后修改时间」;
中间注释掉的那行是作用是,如果执行项目是文件夹,则对内部项目也执行时间修改;
@echo off
for %%i in (%*) do (
echo %~n1
echo %%i
@REM powershell.exe -command "if (Test-Path -LiteralPath '%%i' -PathType Container){ls '%%i\*' | foreach-object { $_.LastWriteTime = Get-Date; $_.CreationTime = Get-Date}}"
powershell.exe -command "Get-ItemProperty -LiteralPath '%%i' | foreach-object {$_.LastWriteTime = Get-Date; $_.CreationTime = Get-Date}"
echo "-----"
)
@REM pause
#cmt2796
回复