ASP GetBaseName 方法
asp getbasename 方法

getbasename 方法返回指定路徑中的文件或文件夾的基準名稱。
語法
filesystemobject.getbasename(path)
參數(shù) | 描述 |
---|---|
path | 必需的。需被返回基準名稱的文件或文件夾的路徑。 |
實例
<%
dim fs
set fs=server.createobject("scripting.filesystemobject")
response.write(fs.getbasename("c:\winnt\cursors\3dgarro.cur"))
set fs=nothing
%>
輸出:
3dgarro
dim fs
set fs=server.createobject("scripting.filesystemobject")
response.write(fs.getbasename("c:\winnt\cursors\3dgarro.cur"))
set fs=nothing
%>
輸出:
3dgarro

相關文章
- ASP Application 對象
- ASP ADO
- ASP Column 屬性
- ASP Close 方法
- ASP WriteLine 方法
- ASP WriteBlankLines 方法
- ASP Path 屬性
- ASP ShortPath 屬性
- ASP Move 方法
- ASP CompareMode 屬性
- ASP Item 屬性
- ASP Remove 方法
- ASP AppendToLog 方法
- ASP BinaryWrite 方法
- ASP ServerVariables 集合
- ASP BinaryRead 方法
- ASP Lock 和 Unlock 方法
- ASP CreateObject 方法
- ASP MapPath 方法
- ASP GetParentFolderName 方法