DEV Community

Alin Climente
Alin Climente

Posted on

How to hide pycache folders in VSCode

Want to hide pycache folders from vscode file explorer?

Here is how you can do that:

  • Open settings (File > Preferences > Settings or ctrl + ,);
  • Search for 'exclude' in the Settings search bar;
  • On Files: Exclude click on Add Pattern button and add **/__pycache__ pattern;

vscode-exclude-files-from-file-explorer

Nice! Now your file explorer is clean. You can do the same for other files you don't want to see in the vscode file explorer.

Top comments (0)