Powershell 将特定文件从所有子文件夹复制到单个文件夹
Powershell copying specific files from all subfolders to a single folder
我正在尝试将音乐库中的所有 cover.jpg 文件复制到一个文件夹中。到目前为止,我的尝试要么让我在目标中找到一个文件,要么让我找到每个所需的文件,但也在它们自己的文件夹中与源相匹配(即,为每个仅包含 cover.jpg 文件的专辑命名的文件夹)。
Get-ChildItem "C:\Music" -recurse -filter *.jpg | Copy-Item -Destination "C:\Destination"
我意识到 copy-item 命令只是覆盖了以前的副本,因此我只剩下一个文件。然后我尝试通过移动文件然后重命名它来沿着重命名路线走下去,但当然失败了,因为我基于重命名的文件夹现在已经改变了。我不想在复制之前更改文件的名称,因为其他程序仍然需要 cover.jpg 才能运行。
我的问题是...
有谁知道如何递归地查看我的音乐库中的每个文件夹以找到 cover.jpg 文件,将其重命名以匹配父文件夹(或者即使可能,g运行dparent 和 parent)然后复制它将文件复制到新文件夹,确保不在此目标位置复制或创建任何新文件夹?
作为奖励,这是否可以检查文件是否已经存在,以便以后我 运行 只复制新文件?
库的文件结构非常简单。 \Music\Artist\Album title\cover.jpg
如果您有这样的音乐库结构,最简单的方法是使用属性 Directory
和 Parent
Get-ChildItem
返回的每个 FileInfo 对象包含:
$sourcePath = 'C:\Music'
$destination = 'C:\Destination'
# if the destination folder does not already exist, create it
if (!(Test-Path -Path $destination -PathType Container)) {
$null = New-Item -Path $destination -ItemType Directory
}
Get-ChildItem -Path $sourcePath -Filter '*.jpg' -File -Recurse | ForEach-Object {
$newName = '{0}_{1}_{2}' -f $_.Directory.Parent.Name, $_.Directory.Name, $_.Name
$_ | Copy-Item -Destination (Join-Path -Path $destination -ChildPath $newName)
}
我正在尝试将音乐库中的所有 cover.jpg 文件复制到一个文件夹中。到目前为止,我的尝试要么让我在目标中找到一个文件,要么让我找到每个所需的文件,但也在它们自己的文件夹中与源相匹配(即,为每个仅包含 cover.jpg 文件的专辑命名的文件夹)。
Get-ChildItem "C:\Music" -recurse -filter *.jpg | Copy-Item -Destination "C:\Destination"
我意识到 copy-item 命令只是覆盖了以前的副本,因此我只剩下一个文件。然后我尝试通过移动文件然后重命名它来沿着重命名路线走下去,但当然失败了,因为我基于重命名的文件夹现在已经改变了。我不想在复制之前更改文件的名称,因为其他程序仍然需要 cover.jpg 才能运行。
我的问题是... 有谁知道如何递归地查看我的音乐库中的每个文件夹以找到 cover.jpg 文件,将其重命名以匹配父文件夹(或者即使可能,g运行dparent 和 parent)然后复制它将文件复制到新文件夹,确保不在此目标位置复制或创建任何新文件夹?
作为奖励,这是否可以检查文件是否已经存在,以便以后我 运行 只复制新文件?
库的文件结构非常简单。 \Music\Artist\Album title\cover.jpg
如果您有这样的音乐库结构,最简单的方法是使用属性 Directory
和 Parent
Get-ChildItem
返回的每个 FileInfo 对象包含:
$sourcePath = 'C:\Music'
$destination = 'C:\Destination'
# if the destination folder does not already exist, create it
if (!(Test-Path -Path $destination -PathType Container)) {
$null = New-Item -Path $destination -ItemType Directory
}
Get-ChildItem -Path $sourcePath -Filter '*.jpg' -File -Recurse | ForEach-Object {
$newName = '{0}_{1}_{2}' -f $_.Directory.Parent.Name, $_.Directory.Name, $_.Name
$_ | Copy-Item -Destination (Join-Path -Path $destination -ChildPath $newName)
}