
How do find all files without a name?
-
Debugger
- Posts: 719
- Joined: Thu Jan 26, 2017 11:56 am
How do find all files without a name?
How do find all files without a name?


-
NotNull
- Posts: 5961
- Joined: Wed May 24, 2017 9:22 pm
Re: How do find all files without a name?
But *with* a file extension (like .gif)?
(is it even possible to have a completely 'empty' file name?)
For a rough indication use:
For an accurate result, use:
(not tested, though)
(is it even possible to have a completely 'empty' file name?)
For a rough indication use:
file: wfn:.*For an accurate result, use:
file: regex:^\.[^\.\s]*$(not tested, though)
-
vanisk
- Posts: 152
- Joined: Sat Oct 27, 2018 11:33 am
Re: How do find all files without a name?
Idk, but there are quite a lot of files only with extension in my machine too. Mostly in Eclipse's Profile & metadata folders.NotNull wrote: Fri Jan 11, 2019 10:56 pm But *with* a file extension (like .gif)?
(is it even possible to have a completely 'empty' file name?)
Worked, Produced 2062 results (which includes some files like ".travis.yml")file: wfn:.*
Produced 793 results. Worked like a charm.file: regex:^\.[^\.\s]*$
-
Debugger
- Posts: 719
- Joined: Thu Jan 26, 2017 11:56 am
Re: How do find all files without a name?
The last regular expression works correctly.
-
NotNull
- Posts: 5961
- Joined: Wed May 24, 2017 9:22 pm
Re: How do find all files without a name?
I meant filename.extension without "filename" AND without ".extension". Just a hypothetical situation ..
-
vanisk
- Posts: 152
- Joined: Sat Oct 27, 2018 11:33 am
Re: How do find all files without a name?
Oops. Sorry about that. I misunderstood.I meant filename.extension without "filename" AND without ".extension". Just a hypothetical situation ..