gpt4 book ai didi

c++ - 如何在 C++ 中使用字符串变量作为路径 url

转载 作者:行者123 更新时间:2023-11-28 02:57:35 25 4
gpt4 key购买 nike

#include <iostream>
#include <windows.h>
#include <Lmcons.h>
#include <fstream>
using namespace std;
main(){
char username[UNLEN+1];
DWORD username_len = UNLEN+1;
GetUserName(username, &username_len);
string cmd("C:\\Users\\");
cmd+=username;
cmd+=("\\AppData\\Roaming\\MiniApps");
}

现在我在“cmd”中有了完整的路径 url,我想使用这个变量作为 C++ 文件处理中的路径。喜欢

ofstream file;
file.open(cmd,ios::out|ios::app);

最佳答案

使用 ofstream 打开一个文件流,写入内容并关闭。

#include<iostream>
#include <windows.h>
#include <Lmcons.h>
#include <fstream>
#include <string>

int main(){
char username[UNLEN+1];
DWORD username_len = UNLEN+1;
GetUserName(username, &username_len);
std::string cmd("C:\\Users\\");
cmd+=username;
cmd+=("\\AppData\\Roaming\\MiniApps.txt");
std::ofstream file;
file.open (cmd.c_str(), std::ofstream::out | std::ofstream::app);
file << " Hello World";
file.close();
return 0;
}

关于c++ - 如何在 C++ 中使用字符串变量作为路径 url,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21627722/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com