gpt4 book ai didi

c# - 如何使用 C# 在 Roaming 中找到文件夹?

转载 作者:太空宇宙 更新时间:2023-11-03 21:28:14 26 4
gpt4 key购买 nike

我正在尝试找出一种使用 C# 导航到漫游中的子文件夹的方法。我知道访问我可以使用的文件夹:

string folder = Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData);

我想做的是导航到 Roaming 中的一个文件夹,但不知道如何操作。我基本上需要做这样的事情:

string insideroaming = string folder = Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData\FolderName);

有什么办法吗?谢谢。

最佳答案

考虑 Path.Combine :

string dir = Path.Combine(
Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData),
"FolderName"
);

它返回类似于:

C:\Users\<UserName>\AppData\Roaming\FolderName

如果需要获取文件夹内的文件路径,可以试试

string filePath = Path.Combine(
dir,
"File.txt"
);

或者只是

string filePath = Path.Combine(
Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData),
"FolderName",
"File.txt"
);

关于c# - 如何使用 C# 在 Roaming 中找到文件夹?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25706230/

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