C# 文件/文件夹一般操作(File、Directory)
2021-03-17 14:25
标签:source byte 文件路径 || lower 地址 color 子目录 write C#常用文件操作在 System.IO 命名类库中有:File、Directory; 一、 1、文件(File) 操作: 文件创建:File.Create(filePath); ----在指定路径中创建或覆盖文件 文件删除:File.Delete(filePath); 判断文件是否存在:File.Exists(filePath) 复制文件到另一地址:File.Copy(string sourceFileName, string destFileName); ----将现有文件复制到新文件。 不允许覆盖同名的文件。 File.Copy(string sourceFileName, string destFileName, bool overwrite); ----将现有文件复制到新文件。 是否覆盖同名的文件 文件移动:File.Move(string sourceFileName, string destFileName); ----将指定文件移到新位置,提供要指定新文件名的选项 2、File基本信息 获取 FileInfo fileInfo=new FileInfo(filePath) ----为文件路径的包装的 System.IO.FileInfo 类的新实例; filePath:新文件的完全限定名或相对文件名。 路径不要以目录分隔符结尾 二、目录/文件夹(Directory) 操作 文件夹创建:Directory.CreateDirectory(directPath) 文件夹删除:Directory.Delete(directPath) ----从指定路径删除空目录。 Directory.Delete(directPath,bIsDeleteChildren) ----bIsDeleteChildren 删除指定的目录,并删除该目录中的所有子目录和文件(如果表示) 判断文件夹是否存在:Directory.Exists(directPath) 三、基本封装方法: 1、获取指定目录下所有文件或特定类型的文件 2、获取文件转换后大小 3、未完待续。。。 以上为目前记录,后续将继续补充。 C# 文件/文件夹一般操作(File、Directory) 标签:source byte 文件路径 || lower 地址 color 子目录 write 原文地址:https://www.cnblogs.com/skyheaving/p/12387336.html ///
///
文章标题:C# 文件/文件夹一般操作(File、Directory)
文章链接:http://soscw.com/index.php/essay/65345.html