최신 웹 개발 튜토리얼
 

ASP GetBaseName 방법


<전체 FileSystemObject 개체 참조

GetBaseName 방법은 지정된 경로에있는 파일 또는 폴더의 기본 이름을 반환합니다.

통사론

FileSystemObject.GetBaseName(path)

매개 변수 기술
path 필요합니다. 기본 이름 파일 또는 폴더의 경로가 반환하는 것입니다

<%
dim fs
set fs=Server.CreateObject("Scripting.FileSystemObject")
Response.Write(fs.GetBaseName("c:\winnt\cursors\3dgarro.cur"))
set fs=nothing
%>

Output:

3dgarro

<전체 FileSystemObject 개체 참조