-----提供AD\Exchange\Lync\Sharepoint\CRM\SC\O365等微软产品实施及外包,QQ:185426445.电话18666943750
需求一、创建文件夹
步骤1、我们在桌面创建文件夹test01,步骤如下:
New-Item C:\Users\Terry.zhou\Desktop\test01 -type directory
出现如下报错:
步骤2、这个原因是因为我们在桌面已经有同名文件夹,我们可以运行以下命令,如果有同名文件夹存在则捕获异常
try { New-Item C:\Users\Terry.zhou\Desktop\test01 -type directory -ErrorAction Stop } catch { #"test01文件夹已存在,不需要在创建" Write-Warning "Error: $_" }
需求2、将test文件夹里面带“副本”字样的文件都移动到test01文件夹
try { New-Item C:\Users\Terry.zhou\Desktop\test01 -type directory -ErrorAction Stop } catch { #"test01文件夹已存在,不需要在创建" Write-Warning "Error: $_" } Get-ChildItem C:\Users\Terry.zhou\Desktop\test -Recurse |?{$_.name -like "*副本.*"} | Move-Item -Destination "C:\Users\Terry.zhou\Desktop\test01"
时间: 2024-10-22 02:19:32