我正在尝试将所有这些字符串放在一起,以便我的程序保存文档。没什么好看的。但每次我在调试时保存文件时,它都会创建一个以文件命名的文件夹,不做任何其他操作。我觉得这是一个简单的问题,但我无法找到解决方法。求救!
我的代码
private void btnSave_Click(object sender, EventArgs e)
{
string strNotes = rtbNotes.Text.ToString();
string strUser = txtUser.Text.ToString() + "\\";
string strClass = txtClass.Text.ToString() + "\\";
string strDate = DateTime.Today.Date.ToString("dd-MM-yyyy");
string strLocation = "C:\\Users\\My\\Desktop\\Notes\\";
string strType = txtType.Text.ToString();
string strFile = strLocation + strUser + strClass + strDate;
string subPath = strFile + "." + strType;
bool isExists = System.IO.Directory.Exists(subPath);
if (!isExists)
System.IO.Directory.CreateDirectory(subPath);
System.IO.File.WriteAllText(strFile, strNotes);
}
答案 0 :(得分:1)
首先,您的strLocation路径无效:
C:\用户\我\桌面\注\
其次,您将整个文件路径(包括文件名/扩展名)传递到Directory.Exists,以便实际检查以查看是否存在名为“12/12 / 13.txt”的文件夹 (您只需传递文件夹路径)。
然后你正在尝试编写一个文件,但传递的应该是目录路径...
您是否使用调试程序来逐步执行代码?这会有所帮助。
private void button1_Click(object sender, EventArgs e)
{
string strNotes = "Some test notes.";
string strUser = "someuser" + "\\";
string strClass = "SomeClass" + "\\";
string strDate = DateTime.Today.Date.ToString("dd-MM-yyyy");
string strLocation = "C:\\Users\\My\\Desktop\\Notes\\";
string strType = "txt";
string strFile = strLocation + strUser + strClass + strDate; // ... this is: C:\Users\My\Desktop\Notes\
string subPath = strFile + "." + strType; // .. this is: C:\Users\My\Desktop\Notes\someuser\SomeClass\26-10-2013.txt
bool isExists = System.IO.Directory.Exists(subPath); // ... Checks directory: C:\Users\My\Desktop\Notes\ exists...
if (!isExists)
System.IO.Directory.CreateDirectory(subPath); // ... Creates directory: C:\Users\My\Desktop\Notes\ ...
System.IO.File.WriteAllText(strFile, strNotes); // ... Writes file: this is: C:\Users\My\Desktop\Notes\26-10-2013 ...
}
答案 1 :(得分:0)
您需要调试并观察subPath的值。看起来这被设置为您想要的文件名的值但没有扩展名。
我认为你应该有
string subPath = strLocation + strUser + strClass + strDate;
string strFile = subPath + "." + strType;