File Tree Extractor v1.3.0 Release Notes
I'm excited to announce the release of File Tree Extractor v1.3.0, which introduces visual enhancements and improved file organization options.
New Features
File Icons
Added new useFileIcons
option to display intuitive icons for different item types in the tree structure
"fileTreeExtractor.useFileIcons": true,
📦 project/
├─ 📂 src/
│ ├─ 📂 components/
│ └─ 📄 index.js (125 KB)
├─ 📂 tests/
└─ 📄 package.json (2 KB)
Customizable Sort Order
New sortOrder
option to control how files are organized in the tree output
"fileTreeExtractor.sortOrder": "type",
By Type (folders first):
project/
├─ src/
├─ tests/
├─ package.json
└─ README.md
Alphabetical:
project/
├─ package.json
├─ README.md
├─ src/
└─ tests/
Bug Fixes
- Fixed issues with symbolic link handling to prevent infinite loops and errors
- Improved error reporting for inaccessible paths
Installation
To upgrade to this version, please update your VS Code extension through the Visual Studio Code Marketplace or run ext install fileTreeExtractor
in VS Code.