我测试是否有一个名为\windows\software的文件夹,并且我正在使用这个powershell代码。
$PathBackup = Test-Path Env:\systemroot\software -IsValid
If ($PathBackup -eq $true) {Write-host "There is backup's"}
Else {write-Verbose "There is no backup's of folder \software*"}
但我真正想要的是,测试是否还有其他文件夹与\software*文件夹相匹配,
我已经使用Powershell一天了,我需要使用循环返回文件夹中每个文件的文件名。这是我目前所拥有的:
$filePath = 'C:\Users\alibh\Desktop\Test Folder' #the path to the folder
cd $filePath
Get-ChildItem $filePath |
ForEach-Object{
$fileName = "here is where I return the name of each file so I can edit it
later on"
}
我想要比较文件夹中不同文件的名