Lazerbeak12345
Lazerbeak12345

Reputation: 406

How do I find a file by filename in pycharm IDE?

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

Answers (2)

Faizan Ahmad
Faizan Ahmad

Reputation: 632

If you are using macOS, it's Cmd + Shift + O .

Upvotes: 8

Lazerbeak12345
Lazerbeak12345

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.

Source

Upvotes: 8

Related Questions