Mam poniższy kod, który porównuje dwa foldery i wypisuje pliki różne w odniesieniu do każdego folderu, czy istnieje sposób, aby uzyskać to, aby wyświetlić pełną ścieżkę pliku/folderu dla plików w podfolderach?Powershell - Porównaj zawartość folderu
Cheers
# Create varaibles to store folder paths - pass to Strings...
param([string]$argFolderA,[string]$argFolderB)
# Set variables for folder
$FolderA = Get-ChildItem -Recurse -path $argFolderA
$FolderB = Get-ChildItem -Recurse -path $argFolderB
# Compare the contents and output the files different within each folder.
Compare-Object -ReferenceObject $FolderA -DifferenceObject $FolderB >> C:\CmpOut.txt
W ten sposób SideIndicator jest stracone. –