我需要为我们的用户共享上的每个用户名获取某个文件:
\\\server\share\username\windows\application Data\MICROSOFT\Proof\custom.dic
我如何编码foreach
以使我从根目录通过每个用户名?
我需要为我们的用户共享上的每个用户名获取某个文件:
\\\server\share\username\windows\application Data\MICROSOFT\Proof\custom.dic
我如何编码foreach
以使我从根目录通过每个用户名?
使用通配符作为用户名:
Get-ChildItem '\\server\share\*\windows\application Data\MICROSOFT\Proof\custom.dic'
例子:
Get-ChildItem \\computerName\share | ?{$_.PsIsContainer} | %{$localDir='c:\localDir'}{Copy-Item "\\computerName\share\$($_.Name)\a.txt" "$localDir\$($_.Name)_a.txt"}