Coloring by filename
Moderators: Hacker, petermad, Stefan2, white
Coloring by filename
I need different colors for "G" and "A" files, i could create a search to coloring "2101_G*.*" and "2101_A*.*", this works, but in different projects the "2101" changes so i would need to create again and again with 2101, 2103.
I tried creating a custom search for "_G*.*" but does not work, any clues? with regex maybe?
Another option is to create a Search for "comments" but my comments are numbers, can i specify for "G" files as comments with only "two digits", for "A" three digits...??
2101_G.01.01_name1.doc
2101_G.01.02_name2.doc
...
2101_A.01.02_name3.doc
2101_A.01.02_name4.doc
...
I tried creating a custom search for "_G*.*" but does not work, any clues? with regex maybe?
Another option is to create a Search for "comments" but my comments are numbers, can i specify for "G" files as comments with only "two digits", for "A" three digits...??
2101_G.01.01_name1.doc
2101_G.01.02_name2.doc
...
2101_A.01.02_name3.doc
2101_A.01.02_name4.doc
...
TC license #346559
Re: Coloring by filename
Code: Select all
*_G*
Code: Select all
^\d{4}_G\..+
Code: Select all
^\d{4}_G.+
Regards
Dalai
#101164 Personal licence
Ryzen 5 2600, 16 GiB RAM, ASUS Prime X370-A, Win7 x64
Plugins: Services2, Startups, CertificateInfo, SignatureInfo, LineBreakInfo - Download-Mirror
Ryzen 5 2600, 16 GiB RAM, ASUS Prime X370-A, Win7 x64
Plugins: Services2, Startups, CertificateInfo, SignatureInfo, LineBreakInfo - Download-Mirror
Re: Coloring by filename
The first method is working just perfect!! thank you very much!!
Best regards,
Best regards,
TC license #346559
Re: Coloring by filename
Hi,
Is there any way of restricting this only to Files, right now is affecting Files and Folder...
Thank you,
Is there any way of restricting this only to Files, right now is affecting Files and Folder...
Thank you,
TC license #346559
Re: Coloring by filename
Check "Attributes" and uncheck "Directory" on "Advanced" tab when you define find conditions.
http://gral.y0.pl/tc/FindFilesAdvanced.png
http://gral.y0.pl/tc/FindFilesAdvanced.png
Re: Coloring by filename
Perfect, thank you very much!!
p.d.: vibrant colors in your capture!!
p.d.: vibrant colors in your capture!!

TC license #346559
Re: Coloring by filename
Hi again, could i prevent PDF files to be colored? or said differently: could i only color DWG extension files?
TC license #346559
Re: Coloring by filename
Code: Select all
*_G* | *.pdf
Code: Select all
*_G*.dwg
Part after | is for exclusion.