-
-
Notifications
You must be signed in to change notification settings - Fork 126
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
New Feature: Find Files #222
Comments
Use Case: Examining Browser ExtensionsSo Opera, my favorite Internet browser, decided to dump 549 MB (!!!) into my home directory that even clearing its caches won't remove. What is all that stuff? 71.9 MB just for browser extensions?! Unfortunately, those browser extensions don't use a name for their directories that would be easily recognizable; instead, they use a long, cryptic alphanumeric ID. Those browser add-on packages each have a file I selected the I rearranged the windows to make it look a bit tidier: I moved and resized the Search Results window to take the space of the lower part of the QDirStat main window with the treemap. I also added a custom cleanup action that simply does a So that fat browser extension ...ok, going through the other fat extensions... As you can see, I can leave the Search Results window open while I work in the main window; I can examine files there, I can start cleanup actions (that even works from the Search Results window: It has the same context menu for each entry as the main window), I can move from one search result to the next, and it will scroll to it in the main window, open that branch and select it so I can see the details of that file (or directory) right away. Try it. Mozilla Extensions (Firefox, Thunderbird)Mozilla uses a similar directory structure for its extensions, but it packs each of them into a But unlike Chrome / Chromium / Opera extensions, the name of those Copying such a |
Overview
"Find..." is a new feature to search the in-memory directory tree for files and directories by name. The search results are listed in a separate non-modal window that you can use to jump in the main window from one result to the next, opening that branch and scrolling to it.
Just like the results of the "Discover..." actions, you can keep the results window open and still work in the main window. You can start cleanup actions in the main window, or even in the results window directly.
Screenshots
Search modes include:
"Auto" will guess what you probably mean; if
^
or$
or.*
is found, it will guess regexp, for a lone*
or*.*
it will guess wildcard. If the search pattern starts with=
(e.g.=foobar
), exact match is enforced.Notice that this always uses the name (with extension, if there is any), not the complete path.
The search results are limited to 1000.
The text was updated successfully, but these errors were encountered: