欢迎来到代码驿站!

.NET代码

当前位置:首页 > 软件编程 > .NET代码

C#中的文件路径获取函数和文件名字获取函数小结

时间:2021-05-14 10:39:53|栏目:.NET代码|点击:

1. 获取绝对文件路径

复制代码 代码如下:

System.IO.Path.GetFullPath(string path)

string fileName = "myfile.ext";
string path1 = @"mydir";
string path2 = @"\mydir";
string fullPath;

fullPath = Path.GetFullPath(path1);
fullPath = Path.GetFullPath(fileName);
fullPath = Path.GetFullPath(path2);


2. 获取文件名字(得到指定路径内的文件名,不包括扩展名)
复制代码 代码如下:

System.IO.Path.GetFileNameWithoutExtension(string path)
string fileName = @"C:\mydir\myfile.ext";
string path = @"C:\mydir\";
string result;
result = Path.GetFileNameWithoutExtension(fileName);
result = Path.GetFileName(path);

3.获得包含 path 目录信息的string 或者为空引用
复制代码 代码如下:

System.IO.Path.GetDirectoryName(string path)

string fileName = @"C:\mydir\myfile.ext";
string path = @"C:\mydir\";
string rootPath = @"C:\";
string directoryName;
   
directoryName = Path.GetDirectoryName(fileName);
directoryName = Path.GetDirectoryName(path);
directoryName = Path.GetDirectoryName(rootPath);


4.合并两个路径字符串。
复制代码 代码如下:

System.IO.Path.Combine(String path1, String path2)

上一篇:C#泛型类创建与使用的方法

栏    目:.NET代码

下一篇:关于.net(C#)中的跨进程访问的问题

本文标题:C#中的文件路径获取函数和文件名字获取函数小结

本文地址:http://www.codeinn.net/misctech/121375.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有