码迷,mamicode.com
首页 > 系统相关 > 详细

PowerShell 列举磁盘文件

时间:2016-03-24 16:33:03      阅读:168      评论:0      收藏:0      [点我收藏+]

标签: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 列举磁盘文件

标签:powershell

原文地址:http://timefiles.blog.51cto.com/8475652/1754822

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!