Overview Version History Q & A Rating & Review
Copy File Tree
Copy the current workspace file tree to the clipboard.
Extension Settings
Configure in settings which files not to include in the file tree:
Open settings
Click the gear icon in the bottom left corner, or
Navigate to File > Preferences > Settings
Search for "Copy File Tree" in the search bar at the top of the settings window.
Modify the settings:
Copy File Tree: Ignore Environment Files
: Whether to ignore environment files .
Copy File Tree: Ignore Git Ignore
: Whether to ignore files listed in .gitignore.
Copy File Tree: Custom Ignored Files
: An array of custom files to ignore.
File tree example:
├── packages
│ ├── cli
│ │ ├── create.ts
│ │ └── studio.ts
│ ├── create
│ │ └── files
│ │ ├── package.json
│ │ ├── README.md
│ │ └── storyline.yaml
│ ├── storyfiles
│ │ ├── api
│ │ └── validation
│ │ ├── scehma.json
│ │ └── validate.ts
│ ├── studio
│ │ ├── app
│ │ │ ├── api
│ │ │ ├── favicon.ico
│ │ │ ├── globals.css
│ │ │ └── page.tsx
│ │ ├── public
│ │ ├── .eslintrc.json
│ │ ├── next.config.mjs
│ │ ├── package-lock.json
│ │ ├── package.json
│ │ ├── postcss.config.mjs
│ │ ├── README.md
│ │ ├── tailwind.config.ts
│ │ └── tsconfig.json
├── scripts
│ └── precompile.sh
├── bun.lockb
├── index.ts
├── package-lock.json
├── package.json
├── README.md
├── terminal.config.json
└── tsconfig.json
Environment files:
node_modules
dist
build
out
coverage
.next
.git
.DS_Store
.vscode
temp
logs
__pycache__
.venv
env
venv
target
.idea
.classpath
.project
.bundle
vendor/bundle
vendor
bin
pkg
CMakeFiles
.stack-work
_build
deps
.dart_tool
and .flutter-plugins
.