本帖最后由 zaqmlp 于 2019-5-23 23:41 编辑
- @echo off
- set info=互助互利,支付宝扫码头像,感谢赞助
- rem 有问题,可加QQ956535081及时沟通
- title %info%
- cd /d "%~dp0"
- powershell -NoProfile -ExecutionPolicy bypass ^
- $files=@(dir^|?{($_ -is [System.IO.FileInfo]) -and ($_.Name -ne '%~nx0')});^
- for($i=0;$i -lt $files.Count;$i++){^
- $m=[regex]::match($files[$i].BaseName,'^^((\d{4})-\d{2})-\d{2}');^
- if($m.success){^
- $fd=$m.groups[2].value+'\'+$m.groups[1].value+'\'+$m.groups[0].value;^
- [void](md $fd -force);^
- write-host ($files[$i].Name+' --^> '+$fd);^
- mv -liter $files[$i].Name $fd;^
- };^
- };^
- write-host '%info%' -ForegroundColor green;
- pause
复制代码
|