Truncating/right aligning the path column

I don't know if this is in the works, but it would be nice to either have the path column right outlined so I see the ending path of files, because they contain the Artist and Album in a directory structure but because it's standard left aligned I always see the same (e.g. G:\Muziek\soulseek\downloads\band\album) repeating part.

This is also my default sorting column because for me, it makes the most sense keeping artists, albums, and songs alphabetically and numerically.

I'm not really interested in the 1st part because it's always the same and if I fit the column to contents it takes up a bunch of unnecessary space.

Or having a way to remove the Folder part from the Path would also work.

I don't really understand which part of the path you want to keep and which to discard, could you give an example?

Please confirm. You are not seeking to actually trim or truncate the existing path. This request is simply how the file list column for the path be justified from the right so that the end of the path is most visible and the front/left is hidden if the column is not wide enough?

That looks to me like the filename and the _DIRECTORY or is it more? It should be possible to add a column that shows a dedicated part of the path. But for such an column definition it would be necessary to see which part is required.

@ohrenkino, most people keep all their stuff in a drive or folder collection so the full path always stays the same for each file, so this is unnecessary info, for instance the 'M:\Muziek#soulseek\complete' part:
M:\Muziek#soulseek\complete\Wreckage, The\Pillaging, A Mutual Benefit\01...
M:\Muziek#soulseek\complete\Wreckage, The\Pillaging, A Mutual Benefit\02...

@MotleyG This could work, but truncation with left alignment is more readable with different lengths of artists and albums.

You could create a column with the following definition as
Value: $replace(%_path%,M:\Muziek#soulseek\complete,)

which should show only

which seems to be the more important part for you.

Alteratively, you could use as
Value: $right(%_path%,50)
which gives you the rightmost 50 characters

Yes, that's pretty much it, thanks! :grinning:
Is it possible to have multiple replaces in a compound statement?
After downloading I pull them through MusicBrainz and then they are moved to a different location.

$replace() allows some 30 pairs of search and replace parameters.
But it could be that a regular expression like
$regexp(%_path%,M:\Muziek#.*?\\,)
may be the better approach.

Nice, those multiple search/replace pairs did the trick, thanks!