foreach($file in Get-ChildItem) {Echo $file }
1..5 | foreach{ new-Item -Path E:\$_.txt} -> 创建多个文件
new-item 新的内容单元 文本 可选
删除多个文件 只需要修改 new-item 改写成remove-item
new-item -Path E:\*.txt
get-childitem -Path E:\ 获取路径下的内容
foreach($file in Get-ChildItem) {Echo $file }
1..5 | foreach{ new-Item -Path E:\$_.txt} -> 创建多个文件
new-item 新的内容单元 文本 可选
删除多个文件 只需要修改 new-item 改写成remove-item
new-item -Path E:\*.txt
get-childitem -Path E:\ 获取路径下的内容