要求 打开程序同目录下同名的文件夹
如 G:\autorun.exe 运行后打开 G:\autorun 目录
PS 需要判断该目录是否存在
bool FolderIsExist(CString sPath)
{
WIN32_FIND_DATA wfd;
bool bValue = false;
HANDLE hFile = FindFirstFile(sPath, &wfd);
if ((hFile != INVALID_HANDLE_VALUE) && (wfd.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY))
{
bValue = true;
}
FindClose(hFile);
return bValue;
}
void OpenDir()
{
char appPath[MAX_PATH];
//得到自身文件路径
GetModuleFileName(NULL,appPath,256);
CString appPathString = appPath;
if (1) //这里怎么写?
{
char openDir[80]={0};
strcpy(openDir,"explorer ");
strcat(openDir,appPathString.Left(sizeof(appPathString)-4)); //这里貌似有问题。。
//打开目录
WinExec(openDir,1);
}
}