使用GetOpenFileName检索xml文件名后,tinyxml加载失败

时间:2014-09-10 17:23:05

标签: c++ xml visual-studio-2010 windows-xp tinyxml

在我的代码中实现函数GetOpenFileName之前,我已经使用了tinyxml 1,所以每当我给它一个相对路径或绝对路径时,我就知道加载是有效的。

我只是不明白为什么每当函数GetOpenFileName首先执行时它都不起作用。我实际上尝试了几次测试,每次执行该功能时,无论我是否使用了它给我的文件路径,tinyxml仍然无法找到xml。

std::string tutName = getTutorialFilename();

if(tutName != "") {
    std::cout << "Before replacing: " << tutName << std::endl;

    boost::replace_all(tutName, "\\", "/");

    bool loadTutorial = tutorial->loadTutorialSteps(tutName);

    if(loadTutorial) {
        std::cout << "success!" << std::endl;
    } else {
        std::cout << "failed: " << tutName << "to load" << std::endl;
    }
}

Function getTutorialFilename,它使用GetOpenFilename:

std::string getTutorialFilename() {
OPENFILENAME ofn;       // common dialog box structure
char szFile[260];       // buffer for file name
HWND hwnd;              // owner window
HANDLE hf;              // file handle

// Initialize OPENFILENAME
ZeroMemory(&ofn, sizeof(ofn));
ofn.lStructSize = sizeof(ofn);
ofn.hwndOwner = hwnd;
ofn.lpstrFile = szFile;
// Set lpstrFile[0] to '\0' so that GetOpenFileName does not 
// use the contents of szFile to initialize itself.
ofn.lpstrFile[0] = '\0';
ofn.nMaxFile = sizeof(szFile);
ofn.lpstrFilter = "XML\0*.xml*\0All\0*.*\0";
ofn.nFilterIndex = 1;
ofn.lpstrFileTitle = NULL;
ofn.nMaxFileTitle = 0;
ofn.lpstrInitialDir = NULL;
ofn.Flags = OFN_PATHMUSTEXIST | OFN_FILEMUSTEXIST;

// Display the Open dialog box. 

if (GetOpenFileName(&ofn)==TRUE) {
    hf = CreateFile(ofn.lpstrFile, 
                    GENERIC_READ,
                    0,
                    (LPSECURITY_ATTRIBUTES) NULL,
                    OPEN_EXISTING,
                    FILE_ATTRIBUTE_NORMAL,
                    (HANDLE) NULL);

    std::string tutorialFilename(szFile);

    return tutorialFilename;
}

return "";

}

我知道它找到了没有额外空格的tutorialFilename,因为我已经运行了调试器,但我仍然无法理解为什么tinyxml无法加载。

1 个答案:

答案 0 :(得分:0)

我想出了这个问题。 TinyXML输出错误13 - 由于CreateFile阻止访问该文件而拒绝权限。我删除了该功能,因为我不需要它。