Search...Search plugins and themes...
⌘K
Sign in
  • Get started
  • Download
  • Pricing
  • Enterprise
  • Account
  • Obsidian
  • Overview
  • Sync
  • Publish
  • Canvas
  • Mobile
  • Web Clipper
  • CLI
  • Learn
  • Help
  • Developers
  • Changelog
  • About
  • Roadmap
  • Blog
  • Resources
  • System status
  • License overview
  • Terms of service
  • Privacy policy
  • Security
  • Community
  • Plugins
  • Themes
  • Discord
  • Forum / 中文论坛
  • Merch store
  • Brand guidelines
Follow us
DiscordTwitterBlueskyThreadsMastodonYouTubeGitHub
© 2026 Obsidian

File Manager

jfsiciliajfsicilia2k downloads

Adds missing features to the file explorer.

Add to Obsidian
  • Overview
  • Scorecard
  • Updates9

This plugin enhances the Obsidian File Explorer by introducing essential file management features. It adds several new commands to interact with the File Explorer, allowing users to bind hotkeys for efficient keyboard-only file management.

Version 1.2: Introduces the new pathexplorer codeblock. See details below.

Version 1.3: Introduces the ability to use URL schemas as commands in Open With....

Version 1.4: Introduces move note and go to folder commands. Pathexplorer can show now absolute paths and you can use environment variables in the paths.

Features

  • Open With: Open files or folders using custom commands.
  • Create Subfolder: Create a subfolder within the current folder.
  • Create Folder: Create a sibling folder.
  • Create Note: Create an empty note in the current folder.
  • Duplicate: Duplicate files or folders.
  • Move: Move selected files or folders to a new location.
  • Copy: Copy selected files or folders to a new location.
  • Copy, Cut, Paste: Copy or cut selected files or folders to the clipboard and paste them.
  • Clear Clipboard: Clear the clipboard contents.
  • Toggle Selection: Toggle the selection of a file or folder.
  • Select All: Select all files and folders.
  • Invert Selection: Invert the current selection.
  • Deselect All: Clear all selections.
  • Rename: Rename files or folders.

Version 1.1

  • Go to File/Folder: Locate and focus on a file or folder in the file explorer.
  • Open file/folder with...: Open file or folder in the file explorer with custom program.

Version 1.2

  • pathexplorer codeblock: Display files and folders from specified paths and open them using custom commands.

Version 1.4

  • Move note: Move active note to a new location.
  • Go to Folder: Locate and focus on a folder in the file explorer.

Copy/Move Conflict Resolution

When file conflicts occur, choose from the following resolution methods:

  • Overwrite: Replace the existing file or folder.
  • Skip: Ignore the conflicting file or folder.
  • Keep: Retain both files by renaming the new one.

Usage

File Explorer Commands

NOTE: These commands are available only when the File Explorer panel is focused.

  • File Manager: Create a subfolder within the focused or active file/folder.
  • File Manager: Create a folder as sibling of the focused or active file/folder.
  • File Manager: Create a note within the focused or active folder.
  • File Manager: Duplicate focused or active file/folder,
  • File Manager: Copy selected files/folders to clipboard,
  • File Manager: Cut selected files/folders to clipboard,
  • File Manager: Paste files/folders from clipboard to selected folder,
  • File Manager: Clear clipboard,
  • File Manager: Move selected files/folders to a new folder.
  • File Manager: Copy selected files/folders to a new folder.
  • File Manager: Select all siblings and children of the focused or active file/folder.
  • File Manager: Toggle selection of the focused or active file/folder.
  • File Manager: Clear selection.
  • File Manager: Invert selection.
  • File Manager: Rename focused or active file/folder.

Version 1.1

  • File Manager: Go to file or folder in file explorer.
  • File Manager: Open with <command>.

Version 1.4

  • File Manager: Move active note to a new folder.
  • File Manager: Go to folder in file explorer.

Global Commands

NOTE: The following commands are available if a file explorer exists in Obsidian.

  • File Manager: Go to file or folder in file explorer.
  • File Manager: Go to folder in file explorer.

NOTE: This command is globally available. If the file explorer is active, the focused or selected file/folder will be used for the Open With command. Otherwise, the currently active document will be used.

  • File Manager: Open with ...

Open with...

Create custom Open With commands in the settings tab.

Open With

NEW: Version 1.3.1 allows to define app URL Schemas as commands (for example: ulysses://x-callback-url/open?path={{file_path}}).

The Open With commands are also available in the File Context Menu if enabled in the settings.

pathexplorer codeblock

Version 1.2 introduces the pathexplorer codeblock. For example, adding the following codeblock to a note:

```pathexplorer
# Path or paths to explore.
path $HOME/dev/dump_shortcuts
path c:\tools\obsidian
path %USERPROFILE%\projects

# If present include dump_shortcuts as root of files and folders. 
include-root

# Use .gitignore syntax to ignore files/folders.
ignore .git/
ignore .venv/
ignore old/
ignore build/
ignore dist/
ignore test*/
ignore __pycache__/
ignore .*
ignore *.bat
ignore *.spec

# Define max-depth (default 1)
max-depth 3

# Define max-files (default 100)
max-files 20 
```

Will render the following output in reader mode:

Settings

pathexplorer codeblock syntax.

#

For line comments

path <relative or absolute path>

Version 1.4

Now you can use environment variables in the path. The Linux/Mac format ($<var>) and the Windows format (%<var>%) can be used interchangeably. On Windows, the HOME environment variable will be translated to USERPROFILE if it does not exist.

Specify paths to explore. Multiple paths can be defined, one per line.

include-root

Include the root folder as the parent of its children.

max-depth

Max depth level to explore in the tree.

max-files

Max number of files/folders to display.

ignore

Ignore files/folders using .gitignore patterns. Inverted patterns (!<pattern>) are also supported. Multiple ignore patterns can be defined, one per line.

flat [<none> | hide-files | hide-folders]

Display files and folders as a list without hierarchy. Use optional flags to hide files or folders.

hide-icons

Hide command icons next to files/folders.

Version 1.4

absolute-path [<none> | all | root]

Display absolute path on folders. By default none is used (no absolute paths). all flag shows absolute path in every folder. root flag show absolute path in root folder.

Create custom patterns in the settings tab.

pathexplorer settings

Installation

Install File Manager from the Community Plugins section.

Configuration

Customize plugin behavior using the general settings tab.

NOTE: Refer to the Open With and pathexplorer sections for additional settings.

Settings

Development

  1. Clone this repository into the .obsidian/plugins folder of an Obsidian Vault.
  2. Ensure Node.js version is at least v16 (node --version).
  3. Run npm install to install dependencies.
  4. Run npm run dev to start compilation in watch mode.
  5. Enable the File Manager plugin in Obsidian settings.

Support

For issues or feature requests, open an issue on the GitHub repository.

License

This plugin is licensed under the MIT License.

Roadmap

  • Add merge functionality for folder copy/move.
  • Auto-select files in the destination after copying/moving.
  • Add sorting customization to pathexplorer codeblock.

Acknowledgments

This plugin was inspired by the following plugins. Thanks to their developers:

  • Obsidian Open With
  • Obsidian File Explorer Count
64%
HealthGood
ReviewCaution
About
Manage files and folders in File Explorer with create, duplicate, move, copy, rename, select and clipboard commands with hotkeys. Open items with custom commands or URLs, use pathexplorer codeblocks for path lists (absolute, env vars), and pick overwrite, skip or keep on conflicts.
FilesFoldersCommands
Details
Current version
1.4.0
Last updated
Last year
Created
2 years ago
Updates
9 releases
Downloads
2k
Compatible with
Obsidian 0.15.0+
Platforms
Desktop only
License
MIT
Report bugRequest featureReport plugin
Author
jfsiciliajfsicilia
GitHubjfsicilia
  1. Community
  2. Plugins
  3. Files
  4. File Manager

Related plugins

Flexplorer

Enhance the file explorer with custom sorting, pinning, and hiding.

Custom File Explorer sorting

Manual or automatic config-driven reordering and sorting of files and folders in File Explorer.

Multi Properties

Add properties to multiple notes at once. Either right-click a folder or select multiple notes and right-click the selection.

File Explorer Note Count

See the number of notes in each folder within the file explorer.

Create Note in Folder

Add commands to create a note in a specific folder.

File Tree Alternative

An alternative file tree view with separate folder and file panes.

Find orphaned files and broken links

Find files that are not linked anywhere and would otherwise be lost in your vault. In other words: files with no backlinks.

Quick Explorer

Perform file explorer operations (and see your current file path) from the title bar, using the mouse or keyboard.

Trash Explorer

Restore and delete files from the Obsidian .trash folder.

Notebook Navigator

A better file browser and calendar inspired by Apple Notes, Bear, Evernote and Day One.