A Visual Studio Code extension that makes it effortless to copy the contents or structure of selected files and folders right from the Explorer context menu.
- 📋 Copy content of selected files (with filenames prepended)
- 🗂️ Copy the file/folder structure as a tree
- 🔍 Advanced filtered copy with smart selectors:
intext:→ filter by file contentinname:/-inname:→ partial name match / excludename:→ exact filename match
Right-click on any file or folder in the Explorer sidebar and choose:
Easy CopyEasy Copy: Paths TreeEasy Copy: Filtered
You can also run these from the Command Palette.
intext:user intext:model -inname:.g.dart inname:.dart name:models.py
Explanation:
intext:user→ file must contain "user"intext:model→ file must contain "model"inname:.dart→ filename must contain ".dart"-inname:.g.dart→ filename must NOT contain ".g.dart"name:models.py→ filename must exactly be "models.py"
✅ Supports multiple filters at once. Case-insensitive.
Sedrakyan Gnel github.com/SedrakyanGnel