Yes that was exactly my thought.
The idea came to me while reading your posts and when I looked at my files afterwards.
I currently have the following structure:
── documents
│ ├── 2018
│ │ ├── PDFs
│ │ │ └── 20XX_some_letter_scan.pdf
│ │ └── project_name
│ │ └── some_project_file.docx
│ ├── 2019
│ │ ├── PDFs
│ │ │ └── 20XX_some_letter_scan.pdf
│ │ └── project_name
│ │ └── some_project_file.docx
│ └── 2020
│ ├── PDFs
│ │ └── 20XX_some_letter_scan.pdf
│ └── project_name
│ └── some_project_file.docx
├── obsidian
│ ├── articles
│ │ └── some_article.md
│ └── journal
│ ├── 2018
│ │ ├── 20XX-XX.md
│ │ └── 20XX-XX-XX.md
│ ├── 2019
│ │ ├── 20XX-XX.md
│ │ └── 20XX-XX-XX.md
│ └── 2020
│ ├── 20XX-XX.md
│ └── 20XX-XX-XX.md
└── pictures
├── 2018
│ └── some_event
│ └── IMG_20YYMMDD_HHMMSS.jpg
├── 2019
│ └── some_event
│ └── IMG_20YYMMDD_HHMMSS.jpg
└── 2020
└── some_event
└── IMG_20YYMMDD_HHMMSS.jpg
But could easily imagine something like this:
── 2018
│ ├── articles
│ │ └── some_article.md
│ ├── journal
│ │ ├── 20XX-XX.md
│ │ └── 20XX-XX-XX.md
│ ├── PDFs
│ │ └── 20XX_some_letter_scan.pdf
│ ├── pictures
│ │ └── some_event
│ │ └── IMG_20YYMMDD_HHMMSS.jpg
│ └── project_name
│ └── some_project_file.docx
├── 2019
│ ├── articles
│ │ └── some_article.md
│ ├── journal
│ │ ├── 20XX-XX.md
│ │ └── 20XX-XX-XX.md
│ ├── PDFs
│ │ └── 20XX_some_letter_scan.pdf
│ ├── pictures
│ │ └── some_event
│ │ └── IMG_20YYMMDD_HHMMSS.jpg
│ └── project_name
│ └── some_project_file.docx
├── 2020
│ ├── articles
│ │ └── some_article.md
│ ├── journal
│ │ ├── 20XX-XX.md
│ │ └── 20XX-XX-XX.md
│ ├── PDFs
│ │ └── 20XX_some_letter_scan.pdf
│ ├── pictures
│ │ └── some_event
│ │ └── IMG_20YYMMDD_HHMMSS.jpg
│ └── project_name
│ └── some_project_file.docx
└── notes
└── some_timeless_note.md
And as you mentioned correctly, every folder could contain many Markdown files. E.g. project notes. This way everything would live nicely together and would be easily linkable in Obsidian or any Markdown application without the needing a resource folder as we currently have in Obsidian specific directories.
What I’m concerned about is how Obsidian behaves if i for example at work only download the 2020 folder because I don’t need all the old files.