rajdeep3190 downloadsAutomatically adds sequential numbering to folders and notes to maintain organized structures.
Numbered Folder Creator is an Obsidian plugin that automatically maintains sequential numbering for folders and notes to help keep your vault organized.
When a new file or folder is created inside an existing directory, the plugin assigns the next available number prefix to maintain a consistent structure.
Newly created files and folders inside a directory automatically receive a sequential number prefix.
Example:
Projects
├── 01 Research
├── 02 Documentation
├── 03 Design
If a new folder named Planning is created, the plugin renames it to:
04 Planning
The plugin supports numbering for both folders and markdown files.
Example:
Notes
├── 01 Introduction.md
├── 02 Concepts.md
├── 03 Examples.md
File extensions remain unchanged during renaming.
Example:
Report.md → 01 Report.md
The plugin avoids interfering with existing structures.
It ignores:
UntitledThe plugin includes a command that numbers existing folders and notes.
Command:
Retroactively Number All Subfolders and Notes
This command scans subfolders and assigns numbers to items that do not already have a prefix.
Before numbering:
Projects
├── Research
├── Documentation
├── Design
After numbering:
Projects
├── 01 Research
├── 02 Documentation
├── 03 Design
VaultFolder/.obsidian/plugins/numbered-folder-creator
main.js
manifest.json
styles.css
To ensure safe operation, the plugin includes several safeguards:
The plugin only adds numbering to newly created items and does not modify existing organized structures.
MIT License