OPENFILENAME打开对话框

时间:2013-05-28 12:21:30

标签: c++ file winapi

我希望通过win32中的打开文件对话框获取完整的文件路径。  我通过这个功能来做到这一点:

  string openfilename(char *filter = "Mission Files (*.mmf)\0*.mmf", HWND owner = NULL)      {
  OPENFILENAME ofn  ;
  char fileName[MAX_PATH] = "";
  ZeroMemory(&ofn, sizeof(ofn));
  ofn.lStructSize = sizeof(OPENFILENAME);
  ofn.hwndOwner = owner;
  ofn.lpstrFilter = filter;
  ofn.lpstrFile = fileName;
  ofn.nMaxFile = MAX_PATH;
  ofn.Flags = OFN_EXPLORER | OFN_FILEMUSTEXIST | OFN_HIDEREADONLY;
  ofn.lpstrDefExt = "";
  ofn.lpstrInitialDir ="Missions\\";

  string fileNameStr;
  if ( GetOpenFileName(&ofn) )
    fileNameStr = fileName;

  return fileNameStr;
}

它的工作正常并返回路径。但我无法写入该文件,我用openfilename获取它的路径。

注意:  我调用此代码写入文件(序列化):

string Mission_Name =openfilename();
ofstream  ofs ;
ofs =  ofstream ((char*)Mission_Name.c_str(), ios::binary   );
ofs.write((char *)&Current_Doc, sizeof(Current_Doc));
ofs.close();

2 个答案:

答案 0 :(得分:1)

试一试写:

string s = openfilename();

HANDLE hFile = CreateFile(s.c_str(),       // name of the write
                   GENERIC_WRITE,          // open for writing
                   0,                      // do not share
                   NULL,                   // default security
                   CREATE_ALWAYS,          // Creates a new file, always
                   FILE_ATTRIBUTE_NORMAL,  // normal file
                   NULL);                  // no attr. template
DWORD writes;
bool writeok = WriteFile(hFile, &Current_Doc, sizeof(Current_Doc), &writes, NULL);

CloseHandle(hFile);

...并阅读:

HANDLE hFile = CreateFile(s.c_str(),       // name of the write
                   GENERIC_READ,           // open for reading
                   0,                      // do not share
                   NULL,                   // default security
                   OPEN_EXISTING,          // Creates a new file, always
                   FILE_ATTRIBUTE_NORMAL,  // normal file
                   NULL);                  // no attr. template
DWORD readed;
bool readok = ReadFile(hFile, &Current_Doc, sizeof(Current_Doc), &readed, NULL);

CloseHandle(hFile);

帮助链接:

http://msdn.microsoft.com/en-us/library/windows/desktop/bb540534%28v=vs.85%29.aspx

http://msdn.microsoft.com/en-us/library/windows/desktop/aa363858%28v=vs.85%29.aspx

答案 1 :(得分:0)

尝试关闭它然后重新打开然后写作。