Hi all,
Is it possible that the WinApi::PathExists() is not working correct?
i.e. Give a network path and it will always return false.
And then the WinApi::CreateDirectory() will also fail on a network
drive. Who has experienced the same? And what can I do about it?
void networkDirectoryJob()
{
str ipAddress = "\\\\myserver";
FilePath pad = ipAddress + "\\temp";
;
if (!WinAPi::pathExists(pad))
{
if (WinApi::createDirectory(pad))
{
error("Could not create folder!!!");
}
else
info ("Folder created succesfully!");
}
else info ("Directory exists.");
}
| Yahoo! Groups Sponsor | |
|
|
Yahoo! Groups Links
- To visit your group on the web, go to:
http://groups.yahoo.com/group/development-axapta/
- To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]
- Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.

