C 獲取檔名及副檔名

2021-06-14 12:53:01 字數 2575 閱讀 9487

摘自:

system.io.path.getextension( "檔名 ");

changeextension   更改路徑字串的副檔名。 

combine   合併兩個路徑字串。 

getdirectoryname   返回指定路徑字串的目錄資訊。 

getextension   返回指定的路徑字串的副檔名。 

getfilename   返回指定路徑字串的檔名和副檔名。 

getfilenamewithoutextension   返回不具有副檔名的指定路徑字串的檔名。 

getfullpath   返回指定路徑字串的絕對路徑。 

getpathroot   獲取指定路徑的根目錄資訊。 

gettempfilename   返回唯一臨時檔名並在磁碟上通過該名稱建立零位元組檔案。 

gettemppath   返回當前系統的臨時資料夾的路徑。 

ha***tension   確定路徑是否包括副檔名。 

ispathrooted   獲取乙個值,該值指示指定的路徑字串是包含絕對路徑資訊還是包含相對路徑資訊。

c# 獲取檔名及副檔名

string afirstname = afile.substring(afile.lastindexof("\\") + 1, (afile.lastindexof(".") - afile.lastindexof("\\") - 1));  //檔名

string alastname = afile.substring(afile.lastindexof(".") + 1, (afile.length - afile.lastindexof(".") - 1));   //副檔名

string strfilepaht="檔案路徑";

path.getfilenamewithoutextension(strfilepath);這個就是獲取檔名的

還有的就是用substring擷取

strfilepaht.substring(path.lastindexof("\\") + 1, path.length - 1 - path.lastindexof("\\"));

strfilepaht.substring(path.lastindexof("."), path.length - path.lastindexof("."));

或者用openfiledialog1.safefilename

這樣就能取到該檔案的所在目錄路徑

string path1 = system.io.path.getdirectoryname(openfiledialog1.filename) + @"\";

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

/string fullpath = @"\website1\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」

/system.io.path.getfilenam(filepath)       //返回帶副檔名的檔名

system.io.path.getfilenamewithoutextension(filepath)     //返回不帶副檔名的檔名

system.io.path.getdirectoryname(filepath)     //返回檔案所在目錄

///獲取當前程序的完整路徑,包含檔名(程序名)。

string str = this.gettype().assembly.location;

result: x:\***\***\***.exe (.exe檔案所在的目錄+.exe檔名)

//獲取新的 process 元件並將其與當前活動的程序關聯的主模組的完整路徑,包含檔名(程序名)。

string str = system.diagnostics.process.getcurrentprocess().mainmodule.filename;

result: x:\***\***\***.exe (.exe檔案所在的目錄+.exe檔名)

//獲取和設定當前目錄(即該程序從中啟動的目錄)的完全限定路徑。

string str = system.environment.currentdirectory;

result: x:\***\*** (.exe檔案所在的目錄)

//獲取應用程式的當前工作目錄(不可靠)。

string str = system.io.directory.getcurrentdirectory();

result: x:\***\*** (.exe檔案所在的目錄)

C 獲取檔名及副檔名

c 獲取檔名及副檔名 string afirstname afile.substring afile.lastindexof 1,afile.lastindexof afile.lastindexof 1 檔名 string alastname afile.substring afile.lasti...

C 獲取檔名及副檔名

string afirstname afile.substring afile.lastindexof 1,afile.lastindexof afile.lastindexof 1 檔名 string alastname afile.substring afile.lastindexof 1,af...

獲取檔名和副檔名

string afirstname afile.substring afile.lastindexof 1,afile.lastindexof afile.lastindexof 1 檔名 string alastname afile.substring afile.lastindexof 1,af...