Mam ten skrypt, który porównuje pliki w dwóch obszarach dysku i kopiuje najnowszy plik na ten ze starszą datą modyfikacji.
$filestowatch=get-content C:\H\files-to-watch.txt
$adminFiles=dir C:\H\admin\admin -recurse | ? { $fn=$_.FullName; ($filestowatch | % {$fn.contains($_)}) -contains $True}
$userFiles=dir C:\H\user\user -recurse | ? { $fn=$_.FullName; ($filestowatch | % {$fn.contains($_)}) -contains $True}
foreach($userfile in $userFiles)
{
$exactadminfile= $adminfiles | ? {$_.Name -eq $userfile.Name} |Select -First 1
$filetext1=[System.IO.File]::ReadAllText($exactadminfile.FullName)
$filetext2=[System.IO.File]::ReadAllText($userfile.FullName)
$equal = $filetext1 -ceq $filetext2 # case sensitive comparison
if ($equal) {
Write-Host "Checking == : " $userfile.FullName
continue;
}
if($exactadminfile.LastWriteTime -gt $userfile.LastWriteTime)
{
Write-Host "Checking != : " $userfile.FullName " >> user"
Copy-Item -Path $exactadminfile.FullName -Destination $userfile.FullName -Force
}
else
{
Write-Host "Checking != : " $userfile.FullName " >> admin"
Copy-Item -Path $userfile.FullName -Destination $exactadminfile.FullName -Force
}
}
Oto format plików do obejrzenia.txt
content\less\_light.less
content\less\_mixins.less
content\less\_variables.less
content\font-awesome\variables.less
content\font-awesome\mixins.less
content\font-awesome\path.less
content\font-awesome\core.less
Chciałbym to zmodyfikować, aby uniknąć tego, jeśli plik nie istnieje w obu obszarach i wyświetla komunikat ostrzegawczy. Czy ktoś może mi powiedzieć, jak mogę sprawdzić, czy plik istnieje, używając PowerShell?
powershell
powershell-3.0
Samantha JT Star
źródło
źródło
[System.IO.File]::Exists
także inaczej rozwiązuje ścieżki względne iTest-Path
może być używane z ścieżkami innymi niż pliki (np. Lokalizacje w rejestrze). UżyjTest-Path
.[System.IO.File]::($(Join-Path $PWD $path))
[System.IO.Directory]::Exists($path)
folderów. Oba obsługują ścieżki UNC w moim systemie, ale aby robić ukryte udostępnienia, pamiętaj, aby uciec$
na ścieżce jako „$”Użyj ścieżki testowej :
if (!(Test-Path $exactadminfile) -and !(Test-Path $userfile)) { Write-Warning "$userFile absent from both locations" }
Umieszczenie powyższego kodu w
ForEach
pętli powinno zrobić to, co chceszźródło
Chcesz użyć
Test-Path
:Test-Path <path to file> -PathType Leaf
źródło
Standardowym sposobem sprawdzenia, czy plik istnieje, jest
Test-Path
użycie polecenia cmdlet.Test-Path -path $filename
źródło
Możesz użyć
Test-Path
polecenia cmd-let. Więc coś w stylu ...if(!(Test-Path [oldLocation]) -and !(Test-Path [newLocation])) { Write-Host "$file doesn't exist in both locations." }
źródło
cls $exactadminfile = "C:\temp\files\admin" #First folder to check the file $userfile = "C:\temp\files\user" #Second folder to check the file $filenames=Get-Content "C:\temp\files\files-to-watch.txt" #Reading the names of the files to test the existance in one of the above locations foreach ($filename in $filenames) { if (!(Test-Path $exactadminfile\$filename) -and !(Test-Path $userfile\$filename)) { #if the file is not there in either of the folder Write-Warning "$filename absent from both locations" } else { Write-Host " $filename File is there in one or both Locations" #if file exists there at both locations or at least in one location } }
źródło
Test-Path może dać dziwną odpowiedź. Np. „Test-Path c: \ temp \ -PathType leaf” daje wartość false, ale „Test-Path c: \ temp * -PathType leaf” daje true. Smutny :(
źródło