VSWebSite.GetUniqueFilename 方法
使用指定的根目錄名稱和副檔名,傳回在指定之資料夾內唯一的檔案名稱。
命名空間: VsWebSite
組件: VsWebSite.Interop (在 VsWebSite.Interop.dll 中)
語法
'宣告
Function GetUniqueFilename ( _
bstrFolder As String, _
bstrRoot As String, _
bstrDesiredExt As String _
) As String
string GetUniqueFilename(
string bstrFolder,
string bstrRoot,
string bstrDesiredExt
)
String^ GetUniqueFilename(
[InAttribute] String^ bstrFolder,
[InAttribute] String^ bstrRoot,
[InAttribute] String^ bstrDesiredExt
)
abstract GetUniqueFilename :
bstrFolder:string *
bstrRoot:string *
bstrDesiredExt:string -> string
function GetUniqueFilename(
bstrFolder : String,
bstrRoot : String,
bstrDesiredExt : String
) : String
參數
- bstrFolder
型別:System.String
資料夾的相對路徑,而且此資料夾中的檔案名稱必須是唯一的。您可以使用 "/" 做為路徑分隔符號,但不要以 "/" 字元當做資料夾名稱的開頭或結尾。
- bstrRoot
型別:System.String
檔案的主檔名 (Base Name),例如 "default" 或 "HomePage"。
- bstrDesiredExt
型別:System.String
檔案的副檔名 (包括點),例如 ".aspx" 或 ".xml"。
傳回值
型別:System.String
含副檔名的檔案名稱,而且此名稱在指定的資料夾內是唯一的。
.NET Framework 安全性
- 完全信任立即呼叫者。這個成員無法供部分信任的程式碼使用。如需詳細資訊,請參閱從部分受信任程式碼使用程式庫。