FindFirstFile API searches for files based on long and short names

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

API FindFirstFile searches for files based on long and short names(8+3).
If i need to search files based on long names only .
How can i do ?Is there any other API which does search based on long names
only.
Any help is appreciated.
-Rups
 
Rups said:
API FindFirstFile searches for files based on long and short
names(8+3). If i need to search files based on long names only .
How can i do ?Is there any other API which does search based on long
names only.

No, there is not. Your only practical recourse is to use FindFirst/NextFile
to return information on all files and check the long names yourself.

-cd
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top