Sorting Files in Nested Folders #43
-
Hey I can't seem to custom sort files that are inside a folder that is inside another folder. Is this not possible or am I just missing something? Haven't had any problems sorting files that are only inside 1 folder. Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi @Xaerwyn not having more details about your case I can only guess My most obvious suspicion is the syntax to specify the target folder.
And for example, respectively:
So, the obvious guess, based on your description would be to switch from the Let me know if that is or is not the case. |
Beta Was this translation helpful? Give feedback.
Hi @Xaerwyn
not having more details about your case I can only guess
My most obvious suspicion is the syntax to specify the target folder.
There are two variants supported:
/...
which only applies to the specified folder and its immediate subfolders and not deeper, AND/*
which applies to the specified folder and the entire hierarchy of subfolders. In other words, all descendant subfolders (sub-subfolders, and so on)And for example, respectively:
target-folder: MyNotes/...
-> will apply the specified sorting rule to the folderMyNotes
and its immediate children likeMyNotes/2020
andMyNotes/2021
. And will NOT apply the sorting rule to more nested folders likeMyNotes/2020/Jan
orMyNot…