我正在尝试学习如何在xml文件中保存日期,并且当我在代码本身中提供路径(例如C:\ Users \ Name \ Documents)时已经可以这样做了。但我希望用户在第一次打开程序时选择文件路径,然后永远使用此文件路径。
到现在为止,我已经走了那么远:
string xmlFilePath = "C:\\Users\\Name\\Documents\\Visual Studio 2012\\Projects\\ToDoList\\xmlList.xml";
XmlTextWriter xWriteList = new XmlTextWriter(xmlFilePath, Encoding.UTF8);
然后我有一大堆写作命令都运行良好。只是为了澄清我的问题: 当它在我的示例代码中显示“C:\ Users等”时,我想要用户选择一次的文件路径。 我知道我可以让用户使用FileDialog选择文件路径,但我不知道如何以某种方式保存此路径。显然我无法再将其保存在xml中,因为用户必须再次选择该路径。
我希望你理解我的问题,并感谢所有提前回答的人。
答案 0 :(得分:1)
您需要从SaveFileDialog.FileName
属性获取文件并将其保存在类变量中。
在程序运行时,它会持续存在。
要在会话之间保留此功能,您需要将其保存在用户硬盘上的某个位置。您可以使用应用程序configuration or settings file来完成此操作。
在此设置字符串属性,然后将所选文件名保存到该字符串。
加载时:
globalFileName = Properties.Settings.Default.FileName;
关闭申请表时:
Properties.Settings.Default.FileName = globalFileName;
Properties.Settings.Default.Save();
答案 1 :(得分:0)
听起来您需要ApplicationSettingsBase
派生设置。
//Application settings wrapper class
sealed class FormSettings : ApplicationSettingsBase
{
[UserScopedSettingAttribute()]
public string FilePath
{
get { return (string )(this["FilePath"]); }
set { this["FilePath"] = value; }
}
}
像这样使用:
<on form load handler>
frmSettings1 = new FormSettings();
if(frmSettings1.FilePath==null)
{
frmSettings1.FilePath = PromptForLocation();
}
<form exit handler>
frmSettings1.Save();
其中PromptForLocation
好。提示某个地点,像您一样使用&#34;可以让用户选择FileSaveDialog
&#34;
应该注意的是,这将为每个用户提供一个&#34;设置,存储在用户配置文件目录中。如果其他用户登录,他们将获得自己的此设置副本。
答案 2 :(得分:0)
您需要的是一个设置文件,它可以是一个XML文件。对您的程序私有的设置文件。它总是在同一个地方,所以你的程序知道它在哪里。它也可以是用户特定的。
我创建了一个包含在我所有公司项目中的类库,它有一个类文件,公司名称,所以它显然是关于公司在Program Files目录中的位置,以及在Common目录中存储设置和用户的用于存储设置的目录。
所以,我会展示这三个,但你想要的那个将是用户的设置目录或Common。使用程序目录的问题在于它可能在C:\Program Files
中,操作系统不允许您在那里写入,除非您的程序以管理员身份运行。
公共目录&amp;文件:
public const string Company = "YourCompanyName";
/// <summary>
/// Common to all users Company data directory.
/// </summary>
public static DirectoryInfo CommonDataDirectory
{
get
{
string env = Environment.GetFolderPath(Environment.SpecialFolder.CommonApplicationData);
string path = Path.Combine(env, Company);
return new DirectoryInfo(path);
}
}
/// <summary>
/// Common to all users data file.
/// </summary>
/// <param name="name"></param>
/// <returns></returns>
public static FileInfo CommonDataFile(params string[] path)
{
string fullName = Paths.Combine(CommonDataDirectory.FullName, path);
return new FileInfo(fullName);
}
用户的设置目录:
/// <summary>
/// User's common data directory
/// </summary>
/// <returns></returns>
public static DirectoryInfo UserDataDirectory
{
get
{
string env = Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData);
string path = Path.Combine(env, Company);
return new DirectoryInfo(path);
}
}
/// <summary>
/// File in user's common data directory
/// </summary>
/// <param name="filename"></param>
/// <returns></returns>
public static FileInfo UserDataFile(params string[] path)
{
return new FileInfo(Paths.Combine(UserDataDirectory.FullName, path));
}
程序目录:(运行程序/可执行文件的地方)
public static DirectoryInfo ProgramDirectory
{
get
{
string executablePath = System.Windows.Forms.Application.StartupPath;
return new DirectoryInfo(executablePath);
}
}
/// <summary>
/// Get's the file in the exectuable's directory, which would be
/// ProgramFiles/applicationName/filename
/// </summary>
public static FileInfo ProgramFile(params string[] path)
{
string file = Paths.Combine(ProgramDirectory.FullName, path);
return new FileInfo(file);
}
以上是上述代码中引用的Paths class。
另外一件事,您将需要为这些特定程序创建一个子目录。这样您的不同程序就可以拥有同名like Settings.xml
的文件,而不会相互冲突。
我有一个ApplicationBase类,它将Company类用于特定于应用程序的位置。例如:
/// <summary>
/// The application's name
/// </summary>
public static string ApplicationName
{
get { return System.Windows.Forms.Application.ProductName; }
}
/// <summary>
/// Common to all users, application's data directory.
/// </summary>
public static DirectoryInfo CommonDataDirectory
{
get
{
string fullName = Path.Combine(Company.CommonDataDirectory.FullName, ApplicationName);
return new DirectoryInfo(fullName);
}
}
/// <summary>
/// Common to all users, file in application's data directory.
/// </summary>
/// <param name="name"></param>
/// <returns></returns>
public static FileInfo CommonDataFile(params string[] name)
{
string fullName = Paths.Combine(CommonDataDirectory.FullName, name);
return new FileInfo(fullName);
}
我留给你创建另外两个,用户和程序的目录属性和文件方法。