Posted inPowerShell Move指定字串的Folder到另一個指定Folder Posted by Tim Ng 2019-06-28 $year = 19 get-childitem -path D:\backup | foreach-object { new-item -path D:\backup2\20"$year"\$_\ -itemtype directory -force move-item D:\backup\$_\...
Posted inPowerShell 列出所有指定目錄下的指定格式檔案數量/容量bytes Posted by Tim Ng 2019-06-26 get-childitem -path D:\backup\ -recurse -filter "???d17????.zip" | measure length -s Count : 221 Average : Sum : 1206169876 Maximum : Minimum : Proper...