File or Folder
C / C++ / MFC
5
Posts
5
Posters
0
Views
1
Watching
-
Hi All, Can anyone tell me how to find out whether a given path belongs to a file or folder in windows?? Thanks and Regards, Anil
-
Hi All, Can anyone tell me how to find out whether a given path belongs to a file or folder in windows?? Thanks and Regards, Anil
-
Hi All, Can anyone tell me how to find out whether a given path belongs to a file or folder in windows?? Thanks and Regards, Anil
-
Hi All, Can anyone tell me how to find out whether a given path belongs to a file or folder in windows?? Thanks and Regards, Anil
WIN32_FIND_DATA m_data; HANDLE hFile; hFile=FindFirstFile(filename,&m_data) if(hFile==INVALID_HANDLE_VALUE) //file not found else FindClose(hFile);
_**
**_
whitesky