Hi,
Is there a way to avoid conflicts between CreateDirectory() (from API) and
Directory::CreateDirectory(). The other functions from Directory class
works(Exists() as example). It seems to be caused by the inclusion of
"windows.h" ... but I need it.
I already tried the System::IO::Directory::CreateDirectory() typo.
Any ideas ?
Hugo
Carl Daniel [VC++ MVP] - 06 Jun 2005 17:32 GMT
> Hi,
>
[quoted text clipped - 6 lines]
>
> Any ideas ?
#undef CreateDirectory after #including windows.h.
-cd