How do find all files without a name?
How do find all files without a name?
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)
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.
Worked, Produced 2062 results (which includes some files like ".travis.yml")file: wfn:.*
Produced 793 results. Worked like a charm.file: regex:^\.[^\.\s]*$
Re: How do find all files without a name?
The last regular expression works correctly.
Re: How do find all files without a name?
I meant filename.extension without "filename" AND without ".extension". Just a hypothetical situation ..
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 ..