gpt4 book ai didi

c# - 创建和使用 c# 应用程序文件夹

转载 作者:行者123 更新时间:2023-11-30 13:57:22 25 4
gpt4 key购买 nike

我正在创建一个应用程序,该应用程序在我手动创建的一个文件夹中使用照片和 XML 文件,我想让用户在运行时通过应用程序更新该文件夹的数据(添加照片和编辑 Xml 文件)我的问题是最好的方法是什么以及该文件夹放在哪里,我知道我必须放置相对路径所以我很困惑如果是的话,它在 AppData 中吗?

最佳答案

// Use this to get the common directory
string CommonDir = Environment.GetFolderPath(Environment.SpecialFolder.CommonApplicationData);

// And combine it with your own.
// On Window7 this will return "c:\ProgramData\YourCompany\YourProduct"
string YourDir = Path.Combine(CommonDir, @"YourCompany\YourProduct");

// And create the directory / ensure it exists
System.IO.Directory.CreateDirectory(YourDir);

还有其他Special Folders您可以从系统中获取最适合您的需求,例如 MyDocumentsDesktop

关于c# - 创建和使用 c# 应用程序文件夹,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21330080/

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