fix folder share when my exists

This commit is contained in:
freddydk 2022-08-18 09:07:37 +02:00
Родитель 955262bfd7
Коммит 0d8aa4c236
2 изменённых файлов: 13 добавлений и 6 удалений

Просмотреть файл

@ -107,11 +107,18 @@ try {
Expand-Archive "c:\run\$temp\download.zip" -DestinationPath "c:\run\$temp\extract" -Force
if ($subfolder) {
Write-Host "Moving $subfolder to target folder $dir"
Get-ChildItem -Path "c:\run\$temp\extract\$subfolder\*" -Recurse | Move-Item -Destination $dir -Force
} else {
Write-Host "Moving all extracted files to target folder $dir"
Get-ChildItem -Path "c:\run\$temp\extract\*" -Recurse | Move-Item -Destination $dir -Force
Write-Host "Copying $subfolder to target folder $dir"
if (!(Test-Path $dir)) {
New-Item -Path $dir -ItemType Directory | Out-Null
}
Copy-Item -Path "c:\run\$temp\extract\$subfolder\*" -Destination $dir -Recurse -Force
}
else {
Write-Host "Copying all extracted files to target folder $dir"
if (!(Test-Path $dir)) {
New-Item -Path $dir -ItemType Directory | Out-Null
}
Copy-Item -Path "c:\run\$temp\extract\*" -Destination $dir -Recurse -Force
}
Remove-Item "c:\run\$temp" -Recurse -Force
}

Просмотреть файл

@ -1 +1 @@
1.0.2.12
1.0.2.13