GetFileName

簡介,示例C#,

簡介

GetFileName方法描述返回指定路徑中的最後部件,該路徑不是驅動器說明的一部分。語法object.GetFileName(pathspec)GetFileName 方法語法有如下幾部分:部分描述object必需的。始終是一個 FileSystemObject 的名字。pathspec必需的。到一個指定檔案的路徑(絕對的或相對的)。說明如果 pathspec 不是以已命名部件結尾,GetFileName 方法返回一個零長度字元串("")。注意 GetFileName 方法僅在提供的路徑字元串上起作用。它沒有嘗試去辨認路徑,也不對指定路徑是否存在進行檢查。

示例C#

string fileName = @"C:\mydir\myfile.ext";
string path = @"C:\mydir\";
string result;
result = Path.GetFileName(fileName);
Console.WriteLine("GetFileName('{0}') returns '{1}'", fileName, result);
result = Path.GetFileName(path);
Console.WriteLine("GetFileName('{0}') returns '{1}'", path, result);
// This code produces output similar to the following:
// GetFileName('C:\mydir\myfile.ext') returns 'myfile.ext'
// GetFileName('C:\mydir\') returns ''

相關詞條

熱門詞條

聯絡我們