Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion src/ddsFindScanner.jl
Original file line number Diff line number Diff line change
Expand Up @@ -984,7 +984,10 @@ function syncScan()
@info "ddsFindScanner.syncScan: Scanning directory: $dir"
for (root, _, files) in walkdir(dir; onerror = SKIP_NOACCESS)
# Filtra solo le cartelle di interesse per le performance
if !occursin("/Orthophotos", root) continue end
found = any(startswith.(splitpath(root), "Orthophotos"))
if !found
continue
end

for file in files
fullpath = joinpath(root, file)
Expand Down