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

C# 之 获取文件名及拓展名

程序员文章站 2022-12-16 15:16:31
C# 之 获取文件名及拓展名 1、用Path类的方法(最常用) string fullPath = @"\WebSite\Default.aspx"; string filename = System.IO.Path.GetFileName(fullPath);//带拓展名的文件名 “Default ......

1、用path类的方法(最常用)

string fullpath = @"\website\default.aspx";

string filename = system.io.path.getfilename(fullpath);//带拓展名的文件名  “default.aspx”
string extension = system.io.path.getextension(fullpath);//扩展名 “.aspx”
string filenamewithoutextension = system.io.path.getfilenamewithoutextension(fullpath);// 不带扩展名的文件名 “default”
string dir = system.io.path.getdirectoryname(fullpath);     //返回文件所在目录“\\website”

 

2、用substring截取

string afirstname = fullpath.substring(fullpath.lastindexof("\\") + 1, (fullpath.lastindexof(".") - fullpath.lastindexof("\\") - 1));  //不带拓展名的文件名“default”
string alastname = fullpath.substring(fullpath.lastindexof(".") + 1, (fullpath.length - fullpath.lastindexof(".") - 1));   //扩展名“aspx”


string strfilename = fullpath.substring(fullpath.lastindexof("\\") + 1, fullpath.length - 1 - fullpath.lastindexof("\\"));//带拓展名的文件名  “default.aspx”
string strextensionname = fullpath.substring(fullpath.lastindexof("."), fullpath.length - fullpath.lastindexof("."));//扩展名 “.aspx”

 

3、用openfiledialog.safefilename,取到该文件的所在目录路径
string path1 = system.io.path.getdirectoryname(openfiledialog1.filename) + @"\";

string path = path.getfilename("c:\my document\path\image.jpg");    //只获取文件名image.jpg

4、进程相关

//获取当前进程的完整路径,包含文件名(进程名)。获取包含清单的已加载文件的路径或 unc 位置。
string str0 = this.gettype().assembly.location;
//c:\users\yiyi\appdata\local\temp\temporary asp.net files\web\bd33ba98\cbcc133a\app_web_eidyl2kf.dll
//result: x:\xxx\xxx\xxx.exe (.exe文件所在的目录+.exe文件名)

//获取新的 system.diagnostics.process 组件并将其与当前活动的进程关联
//获取关联进程主模块的完整路径,包含文件名(进程名)
string str1 = system.diagnostics.process.getcurrentprocess().mainmodule.filename;
//c:\program files (x86)\common files\microsoft shared\devserver\10.0\webdev.webserver40.exe
//result: x:\xxx\xxx\xxx.exe (.exe文件所在的目录+.exe文件名)

//获取或设置当前工作目录(即该进程从中启动的目录)的完全限定路径。
string str2 = system.environment.currentdirectory;
//c:\program files (x86)\common files\microsoft shared\devserver\10.0
//result: x:\xxx\xxx (.exe文件所在的目录)

//获取当前 system.threading.thread 的当前应用程序域的基目录,它由程序集冲突解决程序用来探测程序集。
string str3 = system.appdomain.currentdomain.basedirectory;
//f:\code\得利斯20150923\web\
//result: x:\xxx\xxx\ (.exe文件所在的目录+"\")

//获取或设置包含该应用程序的目录的名称。
string str4 = system.appdomain.currentdomain.setupinformation.applicationbase;
//f:\code\得利斯20150923\web\
//result: x:\xxx\xxx\ (.exe文件所在的目录+"\")

//获取启动了应用程序的可执行文件的路径,不包括可执行文件的名称。
string str5 = system.windows.forms.application.startuppath;
//c:\program files (x86)\common files\microsoft shared\devserver\10.0
//result: x:\xxx\xxx (.exe文件所在的目录)

//获取启动了应用程序的可执行文件的路径,包括可执行文件的名称。
string str6 = system.windows.forms.application.executablepath;
//c:\program files (x86)\common files\microsoft shared\devserver\10.0\webdev.webserver40.exe
//result: x:\xxx\xxx\xxx.exe (.exe文件所在的目录+.exe文件名)

//获取应用程序的当前工作目录(不可靠)。
string str7 = system.io.directory.getcurrentdirectory();
//c:\program files (x86)\common files\microsoft shared\devserver\10.0
//result: x:\xxx\xxx (.exe文件所在的目录)