Is there an equivalent to the Java File method isDirectory() in MFC? I tried using this :
static bool isDirectory(CString &path) {
return GetFileAttributes(path) & FILE_ATTRIBUTE_DIRECTORY;
}
but it doesn't seem to work.
|
|
|
|
|
|
|
Sorry for possibly "inconsistency" of answer to question but may be you'll see it useful because anytime I need something like this in Windows I am NOT using MFC but regular Windows API:
|
||
|
|
|
Its not MFC, but I use this:
|
||
|
|
|
|
MFC solution as requested: a_FSItem path ot the item to test (examine the CFile::GetStatus() for the needed requirements).
if you wish to include a volume root as a valid directory just add it to the test
|
||
|
|
|
|
CFileFind::IsDirectory()http://msdn.microsoft.com/en-us/library/scx99850(VS.80).aspx EDIT:
If you change filename to have wildcards, you can do a
to get all matching files. |
||||||||
|