当路径D:\web\不存在时,下边两个语句都会抛错:
File.WriteAllText(@"D:\web\index.htm", "111com.net");
File.ReadAllText(@"D:\web\index.htm");
平时调用WriteAllText前都得先调用Directory.Exists和Directory.CreateDirectory,换句话说,创建文件和创建所属文件夹应为一个整体,而读取文件时,创建所属文件夹显然不合适,基于这一原则,重新封装了C# File类:
复制内容到剪贴板 程序代码
public static class ICSFile
{
private static readonly Encoding DEFAULTENCODE = Encoding.UTF8;
///
/// 创建父文件夹
///
///
///
private static void CreateDirectory(string path)
{
string dir = Path.GetDirectoryName(path);
if (!Directory.Exists(dir))
{
Directory.CreateDirectory(dir);
}
}
///
/// 追加文本
///
///
///
public static void AppendAllText(string path, string contents)
{
AppendAllText(path, contents, DEFAULTENCODE);
}
///
/// 追加文本
///
///
///
///
public static void AppendAllText(string path, string contents, Encoding encoding)
{
CreateDirectory(path);
File.AppendAllText(path, contents, encoding);
}
///
/// 复制文件
///
///
///
public static void Copy(string sourceFileName, string destFileName)
{
Copy(sourceFileName, destFileName, false);
}
///
/// 复制文件
///
///
///
///
public static void Copy(string sourceFileName, string destFileName, bool overwrite)
{
CreateDirectory(destFileName);
File.Copy(sourceFileName, destFileName, overwrite);
}
///
/// 删除文件
///
///
public static void Delete(string path)
{
File.Delete(path);
}
///
/// 判断文件是否存在
///
///
///
public static bool Exists(string path)
{
return File.Exists(path);
}
///
/// 移动文件
///
///
///
public static void Move(string sourceFileName, string destFileName)
{
Move(sourceFileName, destFileName, false);
}
///
/// 移动文件
///
///
///
///
public static void Move(string sourceFileName, string destFileName, bool overwrite)
{
if (overwrite && File.Exists(destFileName))
{
File.Delete(destFileName);
}
CreateDirectory(destFileName);
File.Move(sourceFileName, destFileName);
}
///
/// 读取文件
///
///
///
public static string ReadAllText(string path)
{
return ReadAllText(path, DEFAULTENCODE);
}
///
/// 读取文件
///
///
///
///
public static string ReadAllText(string path, Encoding encoding)
{
return File.ReadAllText(path, encoding);
}
///
/// 创建一个新文件写入文本
///
///
///
public static void WriteAllText(string path, string contents)
{
WriteAllText(path, contents, DEFAULTENCODE);
}
///
/// 创建一个新文件写入文本
///
///
///
///
public static void WriteAllText(string path, string contents, Encoding encoding)
{
CreateDirectory(path);
File.WriteAllText(path, contents, encoding);
}
}
茶杯头甜蜜终章dlc 官方手机版v1.0.0.3
下载火柴人传说暗影格斗内置菜单 最新版v3.0.1
下载荒野乱斗测试服 安卓版v61.10.3
下载荒野乱斗彩虹服 安卓版v61.10.3
下载寒霜启示录 安卓版v1.25.10
寒霜启示录是一款生存模拟游戏,不少玩家可能对于末日都有着自己
末日城堡免广告版 安卓最新版v0.7.1
末日城堡免广告版是一款非常好玩的模拟经营类游戏,内部可以不看
甜蜜人生模拟器 最新版v1.4.5
甜蜜人生模拟器是一款非常好玩的模拟恋爱手游,玩家在这里能够对
武器锻造师内置功能菜单 v10.4
武器锻造师内置菜单版是游戏的破解版本,在该版本中为玩家提供了
开放空间overfield 安卓版v1.0.5
开放空间Overfield是一款箱庭养成经营手游,让你在广阔