MFC文件类型使用技巧:

1)文件/文件夹是否存在

添加头文件:

#include <shlwapi.h>

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


PathFileExists(CString strFileName)


2)创建文件夹

CreateDirectory()


3)文件路径的存储问题

例如:test\\test.cpp文件

如果需要保存在一个CString类型或者

一个char数组,需要添加多一个\

如下:

char* pdbName = "test\\\test.cpp"

否则运行的查看显示如下:

test\test.cpp


你可能感兴趣的:(MFC文件)