-
I see we can recurse on command line argument; is it possible to do so when opening a subfolder sheet in the app? Also, could I use this for cleaning file names? For example, replacing spaces with underscores and lowercasing file names? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
There's no way to set And yes, you can use it for cleaning file names. Make sure to set the |
Beta Was this translation helpful? Give feedback.
There's no way to set
options.dir_recurse
in the UI, but we could easily make a command like gEnter or something on the DirSheet that pushes the copy and sets that option on it before loading. Should be a one-liner.And yes, you can use it for cleaning file names. Make sure to set the
filename
column directly; just making a new column namedfilename
isn't sufficient. You'll see the colors change to indicate there are uncommitted (deferred) changes. Usez Ctrl+S
to commit them once they look right.