当前位置: 首页 > article >正文

C# 各种文件和路径操作小结

File、Path和Directory类的区别

对于File,顾名思义,操作文件,Path和Directory这两个词意思有重叠,都是路径的意思,但实际有差异:
1.Path是全称,包含文件夹路径、文件名和文件后缀名
2.Directory不是全称,只包含文件夹路径,不能包含文件名和文件后缀名


File、Path和Directory类的常用接口
接下来会用到的信息:
文件路径举例:“E:\AAA\BBB\CCC\Test.exe”
Application.ExecutablePath:也就是"E:\AAA\BBB\CCC\Test.exe"
AppDomain.CurrentDomain.BaseDirectory:获取当前应用程序.exe所在的文件夹路径,也就是"E:\AAA\BBB\CCC"

一、常用File类接口

1.File.Exists(Application.ExecutablePath):文件是否存在
2.剪切(Move)、复制(Copy)、删除(Delete)等接口不再介绍
3.读取举例:

string strFilePath = "E:\AAA\Test.txt";
string str = "";
if (File.Exists(strFilePath))
{
    using (StreamReader sr = new StreamReader(strFilePath, System.Text.Encoding.GetEncoding("GBK")))
    {
        str = sr.ReadLine();
        sr.Close();
    }
}

4.写入举例:

string fileDirPath = Path.GetDirectoryName(strFilePath);
if (!Directory.Exists(fileDirPath))
{
    Directory.CreateDirectory(fileDirPath);
}
// 用FileStream时,如果本地不存在该文件则会自动创建该文件
using (FileStream fs = new FileStream(strFilePath, FileMode.Create)) //或者FileMode.Append
{
    using (StreamWriter sw = new StreamWriter(fs, System.Text.Encoding.GetEncoding("GBK")))
    {
        sw.WriteLine("test");
        sw.Close();
    }
    fs.Close();
}

二、常用Path类接口
1.Path.GetDirectoryName(Application.ExecutablePath):也就是"E:\AAA\BBB\CCC"
2.Path.GetFileName(Application.ExecutablePath):得到带扩展名的文件名,也就是"Test.exe"
3.Path.GetFileNameWithoutExtension(Application.ExecutablePath):也就是"Test"
4.Path.GetExtension(Application.ExecutablePath):也就是".exe",举例:

filePath.Substring(0, filePath.Length - Path.GetExtension(filePath).Length) //得到不包含扩展名的“文件夹路径+文件名”

5.Path.ChangeExtension(path, newExtension):更改文件路径字符串的扩展名,只是修改扩展名而已,并非更改文件扩展名,举例:

string s = Path.ChangeExtension(@"C:\temp\F3.png", "jpg");

6.Path.Combine(path1, path2):用于合并成文件路径

string s = Path.Combine(@"c:\temp","a.jpg");

7.Path.GetFullPath(path) :得到文件的绝对路径,可以根据相对路径获得绝对路径。比如:路径中含有…/…/之类的,可以得到绝对路径。

三、常用Directory类接口
1.Directory.GetParent(AppDomain.CurrentDomain.BaseDirectory).FullName:获取父文件夹路径,也就是"E:\AAA\BBB\CCC"
2.Directory.GetParent(Directory.GetParent(AppDomain.CurrentDomain.BaseDirectory).FullName).FullName:获取父文件夹路径的父文件夹路径,也就是"E:\AAA\BBB"
3.Directory.Exists(AppDomain.CurrentDomain.BaseDirectory):文件夹路径是否存在
4.Directory.CreateDirectory(path)用法:

string dirName = Path.GetDirectoryName(Application.ExecutablePath);
if (!Directory.Exists(dirName))
{
    Directory.CreateDirectory(dirName); //创建了"E:\AAA\BBB\CCC"这条文件夹路径
}

5.Directory.Move(sourceDirName, destDirName)
6.Directory.Delete(path)
7.Directory.GetFiles(string path, string searchPattern, SearchOption searchOption):分为TopDirectoryOnly和AllDirectories这两种,举例:

string[] parentPathFilenames = Directory.GetFiles(parentPath, "*.meta", SearchOption.TopDirectoryOnly);

8.Directory.GetDirectories(string path, string searchPattern, SearchOption searchOption):分为TopDirectoryOnly和AllDirectories这两种

补充:斜杠/和反斜杠\的区别
都是目录分隔符:
Windows目前用 \ 和 / 都可以
Unix只能用 /

再注意下 \ 有转义的作用即可

有些接口得到的路径里是斜杠/,有些接口得到的路径里是反斜杠\,常用斜杠转换接口:

Replace('/', '\\')
Replace('\\', '/')


 


http://www.kler.cn/a/5155.html

相关文章:

  • LabVIEW软件Bug的定义与修改
  • 怎样修改el-table主题样式
  • 自创“九转化形”算法设计,禁止抄袭
  • spring boot 集成 knife4j
  • window CMD大全
  • 平面坐标转大地坐标(arcgisPro中进行)
  • Gitlab中Pipeline语法三
  • Python3,自从掌握了这个方法,再也不用print进行调试了。
  • 集合之ArrayList
  • JetBrains GoLand 2022.3 Crack
  • Python使用深度神经网络对高光谱图像进行土地覆盖分类
  • Vue项目的打包上线步骤
  • [架构之路-144]-《软考-系统分析师》- 7-企业信息化战略与实施-1-概念、方法、与企业战略/IT战略/业务重组的关系
  • 泰克示波器校准失败
  • 【深入理解二叉树OJ题】
  • 二分查找算法
  • 智联物联分享之物联网协议MQTT简述,MQTT协议特点
  • 今年面试好激烈!
  • 主成分分析(PCA)原理
  • 计算机软件著作权登记申请流程和需要的时间
  • 天狗实战SpringBoot+Vue(二)项目结构搭建(上)
  • 离线GPU服务器配置虚拟环境
  • 日入500+的程序员都在用的“接私活”平台
  • 【IAR工程】STM8S208RB基于ST标准库下按键检测
  • ASTRA Toolbox学习笔记
  • Excel使用技巧:如何打印指定区域?如何设置禁止打印?