C:\Path1 | C:\Path2 | C:\Path3 count:10
How can the search results for each path be 10 list? As a result, it only returns the number of Path3
Currently I can only add sort temporarily to be able to see the results in each path:
C:\Path1 | C:\Path2 | C:\Path3 count:10 sort:dm
[Question] Filter each path by count C:\Path1 | C:\Path2 | C:\Path3 count:10
-
Thinh_VG
- Posts: 7
- Joined: Thu Sep 26, 2024 2:29 am
-
void
- Developer
- Posts: 20179
- Joined: Fri Oct 16, 2009 11:31 pm
Re: [Question] Filter each path by count C:\Path1 | C:\Path2 | C:\Path3 count:10
Use regex: to match the paths and capture the matching path.
Use dupe:1 to find duplicated captured paths.
Use dupemin:1 to allow a single file/folder.
Use dupecount:10 to limit each duplicate group to 10 items.
Use dupesort: to specify which items to show first (show the 10 most recent files)
This shows 10 files and 10 folders from each path.
Adjust c:\\windows\\|c:\\program files\\ to your desired paths.
dupe:
dupemin:
dupecount:
dupesort:
Use dupe:1 to find duplicated captured paths.
Use dupemin:1 to allow a single file/folder.
Use dupecount:10 to limit each duplicate group to 10 items.
Use dupesort: to specify which items to show first (show the 10 most recent files)
regex:"^(c:\\windows\\|c:\\program files\\)" dupesort:1;dm dupe:1 dupemin:1 dupecount:10This shows 10 files and 10 folders from each path.
Adjust c:\\windows\\|c:\\program files\\ to your desired paths.
dupe:
dupemin:
dupecount:
dupesort:
-
Thinh_VG
- Posts: 7
- Joined: Thu Sep 26, 2024 2:29 am
Re: [Question] Filter each path by count C:\Path1 | C:\Path2 | C:\Path3 count:10
Thanks for replying, I need your help
How can path-groups with the same path always be next to each other?
How can path-groups with the same path always be next to each other?
You do not have the required permissions to view the files attached to this post.
-
void
- Developer
- Posts: 20179
- Joined: Fri Oct 16, 2009 11:31 pm
Re: [Question] Filter each path by count C:\Path1 | C:\Path2 | C:\Path3 count:10
Please try sorting by Name.
Include the following in your search:
-or, just click the Name column header.
Include the following in your search:
sort:name-or, just click the Name column header.