日期:2014-05-17 浏览次数:20926 次
FileInfo fi = new FileInfo("D:/test/1.aspx"); var di = fi.Directory; if (!di.Exists) di.Create();
------解决方案--------------------
public static void Write(string txt,string path,string filename)
{
if (!Directory.Exists(path))
Directory.CreateDirectory(path);
StreamWriter sw = new StreamWriter(path, false);
sw.Write(txt);
}
------解决方案--------------------
/// <summary>
/// 创建文件夹
/// </summary>
/// <param name="FileUrl">路径</param>
public static void CreateFile(string FileUrl)
{
Directory.CreateDirectory(FileUrl);
}
/// <summary>
/// 创建子文件
/// </summary>
/// <param name="FileUrl">路径</param>
/// <param name="matter">内容</param>
public static void CreateTxt(string FileUrl, string matter)
{
//if (!File.Exists(url)) { }
FileStream fs = new FileStream(FileUrl, FileMode.Create, FileAccess.Write);//创建写入文件
StreamWriter sw = new StreamWriter(fs);
sw.WriteLine(matter);//开始写入值
sw.Close();
fs.Close();
}
------解决方案--------------------
string directoryPath = @"D:\test";//定义一个路径变量 string filePath = "1.txt";//定义一个文件路径变量 if (!Directory.Exists(directoryPath))//如果路径不存在 { Directory.CreateDirectory(directoryPath);//创建一个路径的文件夹 } StreamWriter sw = new StreamWriter(Path.Combine(directoryPath, filePath)); sw.Write("test"); sw.Flush(); sw.Close();
------解决方案--------------------
//以下代码实现了创建文件夹 if (!Directory.Exists(sPath)) { Directory.CreateDirectory(sPath); }
------解决方案--------------------
这个上面都回答了
------解决方案--------------------
上面都答完了,反正创建文件时,先用代码判断文件夹存不存在,不存在就先建文件夹,再建文件。
------解决方案--------------------
string directoryPath = @"D:\test";//定义一个路径变量
string filePath = "1.txt";//定义一个文件路径变量
if (!Directory.Exists(directoryPath))//如果路径不存在
{
Directory.CreateDirectory(directoryPath);//创建一个路径的文件夹
}
StreamWriter sw = new StreamWriter(Path.Combine(directoryPath, filePath));
sw.Write("test");
sw.Flush();
sw.Close();
------解决方案--------------------
string path = Server.MapPath("~/UpLoadFiles/MyFile/");
if (!Directory.Exists(path))