vc 判断文件夹是否存在并创建

#include "shlwapi.h"

#pragma comment(lib, "shlwapi.lib")


if (!PathIsDirectory(AppPath))
{
    reateDirectory(AppPath,NULL);
    // MessageBox("文件夹不存在");
}else
{
    // MessageBox("文件夹存在");
}

你可能感兴趣的:(vc 判断文件夹是否存在并创建)