我对powershell还是很陌生,我目前正在尝试编写一个脚本,该脚本在文件中找到引用的文件路径,仅取出路径的最后一部分(文件名),并将其移动到与文件夹相同的目的地包含它。
我有一个功能脚本可以执行我想要的操作,剩下的唯一事情就是它不应该查找所引用文件的整个路径。 因为路径不再正确。 它应该只查找文件名并找到并移动它。
这是我当前的脚本:
$source = 'Z:\Documents\16_Med._App\Aufträge\RuheEKG_24HBP_Skript\Ursprung_test'
$destination = 'Z:\Documents\16_Med._App\Aufträge\RuheEKG_24HBP_Skript\24BHD'
$toDelete = 'Z:\Documents\16_Med._App\Aufträge\RuheEKG_24HBP_Skript\ToDelete'
$pattern1 = 'AmbulatoryBloodPressure'
$pattern2 = 'RuheEKG'
# Erstellt Array mit pfad und filename
$allFiles = @(Get-ChildItem $source -File | Select-Object -ExpandProperty FullName)
foreach($file in $allFiles) {
# Dateinhalt als Array
$content = Get-Content -Path $file
# Wählt Destinationspfad
if ($content | Select-String -Pattern $pattern1 -SimpleMatch -Quiet)
{
$dest = $destination
}
else {
$dest = $toDelete
}
# Prüft ob Datei einen Pfad enthält
$refCount = 0
$content | Select-String -Pattern '(^.*)([A-Z]:\\.+$)' -AllMatches | ForEach-Object {
$prefix = $_.Matches[0].Groups[1].Value
$refPath = $_.Matches[0].Groups[2].Value # Bitmap file Path wird geholt
if (Test-Path -Path $refPath -PathType Leaf) {
Write-Host "Moving referenced file '$refPath' to '$dest'"
Move-Item -Path $refPath -Destination $dest -Force
}
else {
Write-Warning "Referenced file '$refPath' not found"
}
}
$refPath -split "\"
$refPath[4]
write-host $refpath
# Bewegt die Files an die vorher festgelegte Destination.
Write-Host "Moving file '$file' to '$dest'"
Move-Item -Path $file -Destination $dest -Force
}
答案 0 :(得分:3)
您可以通过几种方法节省在PowerShell中使用文件路径和-names。
内置cmdlet
# Get the file name
$fileName = Split-Path $refPath -Leaf
# Get the directory path
$dirPath = Split-Path $refPath -Parent
.NET方法
# Get the file name
$fileName = [System.IO.Path]::GetFileName($refPath)
# Get the directory path
$dirPath = [System.IO.Path]::GetDirectoryName($refPath)
如果要在另一个目录中查找文件名,则可以构建如下新路径:
# built-in version
$otherPath = Join-Path $otherDir $fileName
# .NET version
$otherPath = [System.IO.Path]::Combine($otherDir, $fileName)
答案 1 :(得分:2)
要获取要移动的文件的文件名,请按照{marsze}的建议使用Split-Path
。
$FileName = Split-Path $refPath -Leaf
要找到文件,请使用Get-ChildItem
。 ($SearchBase
是您要搜索的路径)
$FileLocation = (Get-ChildItem -Path $SearchBase -Filter $filename -Recurse -File).FullName
现在使用Move-Item
移动文件,然后再次使用Split-Path
查找目的地。
Move-Item -Path $FileLocation -Destination $(Split-Path $file -Parent)