Automatic Create Folder x++
static void CreateFolder(Args _args)
{
str path = 'C:\\2017\\Jan';
;
if (!WinApi::pathExists(path))
{
WinApi::createDirectoryPath(path);
}
}
{
str path = 'C:\\2017\\Jan';
;
if (!WinApi::pathExists(path))
{
WinApi::createDirectoryPath(path);
}
}
Comments
Post a Comment