标签:powershell
#用户指定需要的盘符,格式如“c:\” $zonename=Read-Host("please input need check disk zone,For example [C:\]") CD $zonename #A打头文件夹筛选扫描 Get-ChildItem | where {$_.Name -match "^a"} | select fullname | Out-File a.txt $file = Get-Content "a.txt" foreach ($a in $file) { Write-Host $a } #使用完后清除文件 del a.txt
本文出自 “汜水流年_” 博客,请务必保留此出处http://timefiles.blog.51cto.com/8475652/1754822
标签:powershell
原文地址:http://timefiles.blog.51cto.com/8475652/1754822