# Customize Folder Note Name for Obsidian Quick Explorer
## Metadata
**Status**:: #x
**Zettel**:: #zettel/permanent
**Created**:: [[2022-09-20]]
**Parent**:: [[Obsidian Plugins]]
## Notes
Search the following text in `.obsidian/plugins/quick-explorer/main.js`.
```
`${r.path}/${r.name}.md`
```
For example, I prefer adding the prefix `♯ ` to the folder name as the file name, so my folder note for `foo/bar` is `foo/bar/♯ bar.md`. I can change the found text to
```
`${r.path}/♯ ${r.name}.md`
```