Hello! How do I remove the first two directories in my path column for tidiness sakes? E & Music will always be a constant and I need all the space I can get.
You can rename the current directory with an absolute path so that the current directory is moved several levels up.
The parent directory will be left untouched so that empty folders could be the result.
To rename a directory, use an action of the type "Format value" for _DIRECTORY with e.g.
Format string: E:\music\%_directory%
Thank you for your answer! I'm not sure this is exactly what I'm going for. I'm not trying to rename the directory, but just hide the first two directories specifically in the path column.
You can define the colums as you like.
So, if you want to see only the folder name, then set in the column definition
Value: %_directory%
instead of %_path%
.
Or use a scripting function to cut the displayed data, e.g.
Value: ...$right(%_folderpath%,15)
which displays the 15 rightmost characters of the path.
Just to give you an idea.
You open the column settings dialoge with a right-click on the column header > Modify...
This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.