Label files by word, and column extension error

Hello, I'm pretty new to Dopus and I have been using the trail for the past couple weeks. I'm strongly considering purchasing it now that my trail is almost up.

I do have a few questions or issues I'm dealing with and was wondering if I can fix it.

  1. I created a filter to make my files and folder grey when filename/folder contains the word "old", but for some reason this takes effect when I have word such has "hold" or "bold" etc. Is there anyway to make it only work if its just "old", not within a word?

  2. I allowed a column to show extensions, but some of my files or folders have multiple periods and it messes up the column. For example - a folder called "Tosh.0" shows the ext as 0, rather than .

You can do a "whole word" test using a regex; e.g. (^|\W)old(\W|$) will match a name containing the whole word "old" but not e.g. "hold" or "bold".

The built-in column for showing file extensions won't show anything for folders, are you talking about using a script-added column?

Hi. I tried doing that for labels, but its not working.

  • Label Assignment > Name > Match "(^|\W)old(\W|$)"

If I just type "old", it will do it for the Gold.

Also, I am using the built in column.

Column > Name and Patch > Extension (dir)

Make sure the regular expression checkbox is turned on.

You should also use a wildcard filter rather than a more complex label filter, as it will be quicker:

The "Extension (dirs)" option will try to show an extension of <dir> (without quotes) for a directory (folder) name in addition to filename extensions. You may only want the "Extension" option rather than "Extension (dirs)".

  • Extension - Shows extensions only for files that have an extension and is empty for folders.

  • Extension (dirs) - Shows <dir> in the extension column in addition to show file extensions.

I can't get it to show anything else for a folder. I even tested with "folder.0" and then "folder.1.0" and it still always showed just <dir>. Note hat 'dir' (short for directory) and folder are the same thing. I wonder if you might be referring to a compressed folder, also known as a zip file?

I tried both column extension options but they both show up incorrectly. I have no scripts loaded. The column you're suggesting doesn't show anything for folders, unless it has a period within its name.

I have a PortableApps folder on my USB drive, and some of my files are named in that format and it will show up on both columns.

  1. TrueCrypt 7.0
  2. PortableApps.com
  3. Tosh.O

The following folders will show.

  1. 0
  2. com
  3. O

Which version of DOpus do you have?

Unfortunately my trail period ended, but I'm buying it for my work computer tomorrow morning. I believe I had version 12?

With Label Assignment > Name > Match "(^|\W)old(\W|$)". it works for Old, but is there a way to modify it to only apply to characters with ( or [. That way it wont apply to all my folders that contain the word old, unless I declare it too

for example it should only be for files/folders that have this structure in it
(old) or [Old]

Taking the existing (^|\W)old(\W|$)

if you want to match (old) or [old] instead of just old, then this should do it:

Taking the existing (^|\W)(\[old\]|\(old\))(\W|$)