如何用C ++将文件保存到桌面?

时间:2012-02-16 11:07:58

标签: c++ visual-c++

我想找到一种将文件保存到桌面的方法。由于每个用户都有不同的用户名,我发现以下代码将帮助我找到其他人桌面的路径。但是如何将以下内容保存到桌面? file.open(appData +"/.txt");不起作用。你能告诉我一个例子吗?

#include <iostream>
#include <windows.h>
#include <fstream>
#include <direct.h>
#include <shlobj.h>
using namespace std;
int main ()
{
    ofstream file;  

    TCHAR appData[MAX_PATH];
    if (SUCCEEDED(SHGetFolderPath(NULL,
                                  CSIDL_DESKTOPDIRECTORY | CSIDL_FLAG_CREATE,
                                  NULL,
                                  SHGFP_TYPE_CURRENT,
                                  appData)))

    wcout << appData << endl; //This will printout the desktop path correctly, but
    file.open(appData +"file.txt"); //this doesn't work
    file<<"hello\n";
    file.close();
    return 0;
}

Microsoft Visual Studio 2010,Windows 7,C ++控制台

更新:


#include <iostream>
#include <windows.h>
#include <fstream>
#include <direct.h>
#include <shlobj.h>
#include <sstream> 
using namespace std;
int main ()
{
    ofstream file;  

    TCHAR appData[MAX_PATH];
    if (SUCCEEDED(SHGetFolderPath(NULL,
                                  CSIDL_DESKTOPDIRECTORY | CSIDL_FLAG_CREATE,
                                  NULL,
                                  SHGFP_TYPE_CURRENT,
                                  appData)))

    wcout << appData << endl; //This will printout the desktop path correctly, but
    std::ostringstream file_path; 
    file_path << appData << "\\filename.txt";//Error: identifier file_path is undefined

    file.open(file_path.str().c_str()); //Error:too few arguments in function call
    return 0;
}

4 个答案:

答案 0 :(得分:3)

您无法使用TCHAR连接appData +"/.txt"数组。使用stringstream构造路径并从中提取文件的完整路径:

#include <sstream>

...

std::ostringstream file_path;
file_path << appData << "\\filename.txt";

file.open(file_path.str().c_str());

编辑:

以下为VS2010编译并正确执行:

#include <iostream>
#include <windows.h>
#include <fstream>
#include <direct.h>
#include <shlobj.h>
#include <sstream>
#include <tchar.h>
using namespace std;
int main ()
{
    ofstream file;  

    TCHAR appData[MAX_PATH];
    if (SUCCEEDED(SHGetFolderPath(NULL,
                                  CSIDL_DESKTOPDIRECTORY | CSIDL_FLAG_CREATE,
                                  NULL,
                                  SHGFP_TYPE_CURRENT,
                                  appData)))

    wcout << appData << endl;
    std::basic_ostringstream<TCHAR> file_path;
    file_path << appData << _TEXT("\\filename.txt");

    file.open(file_path.str().c_str());
    file<<"hello\n";
    file.close();

    return 0;
}

答案 1 :(得分:0)

file.open(appData +"/.txt");

在此文件路径中没有文件名。

此函数调用也无效。您应该将第二个参数作为开放类型传递。

file.open(appData +"/file.txt", fstream::out); 

是正确的。

答案 2 :(得分:0)

您应该使用PathAppend来连接路径,这将处理缺少和/或额外的反斜杠(\)字符集。

答案 3 :(得分:0)

我不确定这是否可用:

file.open("%userprofile%\\Desktop\\file.txt", fstream::out);

你可以试试。