Reputation: 406
Sometimes when working on a large codebase one may have difficulty finding a file mentioned in a stack trace. How does one search for that file without manually looking in every directory and without making a script to do it?
Upvotes: 6
Views: 11093
Reputation: 406
In the Pycharm IDE do Ctrl+Shift+N
and you will see a popup menu that lets you select "file" then type to search for files matching your query.
Upvotes: 8