Skip to content
| Marketplace
Sign in
Visual Studio Code>Other>Quick ExplorerNew to Visual Studio Code? Get it now.
Quick Explorer

Quick Explorer

nacn

|
2 installs
| (0) | Free
Quick and interactive explorer for VSCode
Installation
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
Copied to clipboard
More Info

Quick Explorer

Quick and interactive explorer for VSCode

Features

  • Explorer Integration: Adds a "Quick Explorer" panel to the VSCode Explorer sidebar
  • Directory Navigation: Click on folders to navigate through directories
  • Parent Directory Navigation: Use ".." to move up to the parent directory
  • File Opening: Click on files to open them in the VSCode editor
  • Project Root Restriction: Cannot navigate above the project root directory
  • Relative Path Display: View title shows the relative path from the project root
  • Icon Support: Folders and files are displayed with appropriate icons
  • Quick Settings Access: Click the gear icon in the view header to access extension settings

Installation

From VSIX File

  1. Download the latest .vsix file from the Releases page
  2. Open VSCode
  3. Go to Extensions view (Ctrl+Shift+X / Cmd+Shift+X)
  4. Click the "..." menu and select "Install from VSIX..."
  5. Select the downloaded .vsix file

From Source

  1. Clone this repository:

    git clone https://github.com/NaokiIshimura/vscode-quick-explorer.git
    cd vscode-quick-explorer
    
  2. Install dependencies:

    npm install
    
  3. Compile the extension:

    npm run compile
    
  4. Press F5 to open a new VSCode window with the extension loaded

Usage

  1. Open the Explorer sidebar in VSCode
  2. Find the "Quick Explorer" panel
  3. Click on folders to navigate into them
  4. Click on ".." to go to the parent directory
  5. Click on files to open them in the editor
  6. The view title shows your current location relative to the project root

Settings

This extension provides the following configuration options:

  • quickExplorer.defaultPath: Default directory to open on startup
    • Type: string
    • Default: "" (uses workspace root or home directory)
    • Description: Specify an absolute path or a relative path from the workspace root. If empty, the workspace root or home directory will be used.

To configure this setting:

  1. Click the gear icon in the Quick Explorer view header, or
  2. Go to File > Preferences > Settings and search for "Quick Explorer"

Requirements

  • VSCode version 1.105.0 or higher

Development

Project Structure

vscode-quick-explorer/
├── src/
│   ├── extension.ts                 # Extension entry point
│   ├── quickExplorerViewProvider.ts # TreeDataProvider implementation
│   ├── quickExplorerTreeItem.ts     # Tree item implementations
│   └── fileSystemService.ts         # File system operations
├── out/                              # Compiled JavaScript files
├── package.json                      # Extension manifest
└── tsconfig.json                    # TypeScript configuration

Build Commands

  • npm run compile - Compile TypeScript to JavaScript
  • npm run watch - Watch mode for development
  • npm run lint - Run ESLint

Building VSIX

To create a .vsix package:

npx vsce package

License

ISC

Repository

https://github.com/NaokiIshimura/vscode-quick-explorer

  • Contact us
  • Jobs
  • Privacy
  • Manage cookies
  • Terms of use
  • Trademarks
© 2026 Microsoft