我应该写什么作为CategoryPath来获取App_Data文件夹中的文件?
由于
/// <summary>
/// Summary description for XMLHelper
/// </summary>
public static class XMLHelper
{
public static string CategoryPath = "App_Data/Categories.xml";
public static void InsertCategory(string categoryName, string moderator)
{
XElement cat = XElement.Load(CategoryPath);
答案 0 :(得分:2)
尝试
AppDataDir = System.IO.Path.Combine(AppDomain.CurrentDomain.BaseDirectory,"App_data")
然后只需附加所需的文件名。我还没有测试过那段代码。
希望有所帮助