欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

C#如何获得文件路径、文件名称、文件大小、文件拓展名?

程序员文章站 2022-06-12 13:46:41
...

以【文件信息阅读器】为例,说明C#如何获得文件路径、文件名称、文件大小、文件拓展名。

 

关键技术:以Substring方法截取字符串,以LastIndexOf方法查找字符串。

 

具体实现如下:

首先应该要using System.IO;

记录选择的文件全路径

string file_all = openFileDialog1.FileName;

C#获得文件路径

 string file_path = file_all.Substring(0, file_all.LastIndexOf("\\") + 1);

C#获得文件名称

 string file_name = file_all.Substring(file_all.LastIndexOf("\\") + 1, file_all.LastIndexOf(".") - (file_all.LastIndexOf("\\") + 1));

C#获得文件大小

FileInfo f = new FileInfo(file_all);
string file_size = (f.Length / 1024).ToString();

C#获得文件拓展名

string file_tuozhan = file_all.Substring(file_all.LastIndexOf(".") + 1, file_all.Length - file_all.LastIndexOf(".") - 1);

本文由查霆原创,转载需授权。原文地址:http://www.zhating.cn/index.php/post/43.html