powershell 递归拷贝文件夹下的jpg并复制到指定目录

使用 -Recurse参数控制是否递归文件夹

$index = 1
Get-ChildItem -Path E:\project\0315\315 -Recurse | Where-Object { $_.Extension -eq ".jpg" } | ForEach-Object {
 $fileName = $_.Name
 $filePath = $_.FullName
 $newFileName = "E:\\project\\0315\ng\\"+"v8ng_" + "_$index" + "_" + $fileName
 Copy-Item -Path $filePath -Destination $newFileName
$index++
}

你可能感兴趣的:(java,前端,javascript)