Finding FolderName ending with period

English support forum

Moderators: Hacker, petermad, Stefan2, white

Post Reply
Robbie
Junior Member
Junior Member
Posts: 38
Joined: 2008-03-18, 14:27 UTC

Finding FolderName ending with period

Post by *Robbie »

Hi

I recently did some bulk stuf using CMD and 7ZIP under W10. This resulted in a FolderName ending with a . (period).

ie: folders
- AAA
- AAB
- AAC.
- AAD
- AAE.E
(lot of others !)

TC handles this correctly; and I would like to have the the possibility to find them using Grey+ using a search argument. but whatever search argument i use it does not find the folders involved.
i tried various: i.e.:
"*."
*.

maybe i miss something. Is it even possible?

regards
rob
User avatar
Hacker
Moderator
Moderator
Posts: 13144
Joined: 2003-02-06, 14:56 UTC
Location: Bratislava, Slovakia

Re: Finding FolderName ending with period

Post by *Hacker »

Robbie,

Code: Select all

*..
:?:

Roman
Mal angenommen, du drückst Strg+F, wählst die FTP-Verbindung (mit gespeichertem Passwort), klickst aber nicht auf Verbinden, sondern fällst tot um.
User avatar
Dalai
Power Member
Power Member
Posts: 10024
Joined: 2005-01-28, 22:17 UTC
Location: Meiningen (Südthüringen)

Re: Finding FolderName ending with period

Post by *Dalai »

Just a note: When creating such directories, you can't do anything with them, neither in TC nor in CMD - no changing to such dir, no renaming, no deleting. So even when you can select them, it's no use. You need to change path specifications to use the long path prefix, i.e.

Code: Select all

rmdir \\?\D:\rive\path.
works while

Code: Select all

rmdir D:\rive\path.
does not.

If you're able to rename or delete such directories, I guess they don't end with a period but have some invisible character after it.

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
Robbie
Junior Member
Junior Member
Posts: 38
Joined: 2008-03-18, 14:27 UTC

Re: Finding FolderName ending with period

Post by *Robbie »

"Just a note: When creating such directories, you can't do anything with them, neither in TC nor in CMD": Not completely true. but in general, that is why i want to find them for renaming.
IN TC i can dbl click the problem folder (in the example above: AAC.) and remove the '.' and enter, resulting in foldername AAC no problem at all. issue is that there are lots of them and i want to find them iso scanning visually.

it is 7zip that can create such folders when unzipping AAC..7z (note the double dot)
User avatar
tuska
Power Member
Power Member
Posts: 4114
Joined: 2007-05-21, 12:17 UTC

Re: Finding FolderName ending with period

Post by *tuska »

Search queries in TC using the 'Everything' tool (see: signature):

Code: Select all

ev:folder:endwith:.
finds folders with "." dot at the end

Code: Select all

ev:folder:*.* !*.*.*
finds only 1 dot in the folder name

Code: Select all

ev:folder:*.*.*
finds several dots in the folder name


Windows 10 Pro (x64) Version 1909 (OS build 18363.693)
TC 9.51 RC4 x64/x86 | 'Everything'-Version 1.4.1.967 (x64)
☑ 'Everything' | Search queries: TC <=> 'Everything'
Robbie
Junior Member
Junior Member
Posts: 38
Joined: 2008-03-18, 14:27 UTC

Re: Finding FolderName ending with period

Post by *Robbie »

Confirm:
Grey+: *.*.* finds the folders
Post Reply