Powershell 脚本判断制定路径下文件是否存在(来源于网络-转载)
Posted 学习笔记
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Powershell 脚本判断制定路径下文件是否存在(来源于网络-转载)相关的知识,希望对你有一定的参考价值。
$filelist=gc "file.txt" #获取要检查的文件列表 $csvs= new-object collections.arraylist #创建一个arraylist对象 foreach($file in $filelist){ $csv=new-psobject|select yes,no if([io.Directory]::Exists($file)){ #判断文件是否存在 $csv.yes=$file }else{ $csv.no=$file } $null=$csvs.add($csv) } $csvs|Export-Csv file.csv -notype -Encoding oem #导出成csv文件
以上是关于Powershell 脚本判断制定路径下文件是否存在(来源于网络-转载)的主要内容,如果未能解决你的问题,请参考以下文章