Refactor function for waiting for download

This commit is contained in:
Manuel Thalmann 2023-07-15 19:37:30 +02:00
parent 703ed06469
commit 7ce5a52ba6

View file

@ -28,19 +28,25 @@ function Start-AutomatedDownload() {
$downloadChecker = {
param()
foreach ($file in Get-ChildItem $tempDir) {
try {
$stream = [System.IO.File]::Open($file.FullName, [System.IO.FileMode]::Open, [System.IO.FileAccess]::ReadWrite, [System.IO.FileShare]::None);
$files = Get-ChildItem $tempDir;
if ($stream) {
$stream.Close();
if ($(@($files)).Count -ge 0) {
foreach ($file in Get-ChildItem $tempDir) {
try {
$stream = [System.IO.File]::Open($file.FullName, [System.IO.FileMode]::Open, [System.IO.FileAccess]::ReadWrite, [System.IO.FileShare]::None);
if ($stream) {
$stream.Close();
}
return $false;
}
catch {
return $true;
}
return $false;
}
catch {
return $true;
}
} else {
return $false;
}
}