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
4 changes: 4 additions & 0 deletions dissect/target/loaders/dir.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,10 @@ def map_dirs(

drive_letter_map = defaultdict(list)
for path in dirs:
# For unarchived acquire collections that have both "windows" and "Windows"
if path.parent.name.endswith("fs") and os_type == OperatingSystem.WINDOWS:
case_sensitive = True

drive_letter = None
if isinstance(path, tuple):
drive_letter, path = path
Expand Down