ignore LNK files too..

This commit is contained in:
Erik Eckert 2024-07-30 08:48:35 -06:00
parent ded96f9524
commit 1c50fb7e51

View File

@ -71,6 +71,8 @@ $Local_Folder_List = get-childitem -path $Local_Revit_Root -Depth 0
foreach ($folder in $Local_Folder_List) {
if ($folder.Name -eq "!TEMPLATE") {
# Do nothing
} elseif ($folder.Name -like "*.lnk") {
# Do Nothing
}
else {
$FolderName = $folder.Name