gpt4 book ai didi

c# - 在 userfiles 文件夹中创建一个文件(C#、Windows 窗体)

转载 作者:太空狗 更新时间:2023-10-29 17:29:57 28 4
gpt4 key购买 nike

我正在尝试在我的 Windows Forms 中创建一个文本文件应用。它工作正常,但它是在应用程序的默认位置(如文件夹 bin)创建文本文件。但我想将创建的文本文件保存在我的用户文件夹中。我该怎么做?

这是我的代码:

FileInfo fileusername = new FileInfo("userinfo.txt");
StreamWriter namewriter = fileusername.CreateText();
namewriter.Write(txtUsername.Text);
namewriter.Close();

最佳答案

您可以使用 Environment.GetFolderPath获取用户数据文件夹的路径:

string fileName = Path.Combine(
Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData),
"userinfo.txt");

查看 Environment.SpecialFolder 的文档枚举以便找到最适合您需要的文件夹。

关于c# - 在 userfiles 文件夹中创建一个文件(C#、Windows 窗体),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1553290/

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