최신 웹 개발 튜토리얼
 

ASP GetExtensionName 방법


<전체 FileSystemObject 개체 참조

GetExtensionName 방법은 지정된 경로의 마지막 구성 요소에 대한 파일 확장자 이름이 포함 된 문자열을 반환합니다.

통사론

FileSystemObject.GetExtensionName(path)

매개 변수 기술
path 필요합니다. 파일 확장자 이름 파일의 경로는 반환되는

<%
dim fs
set fs=Server.CreateObject("Scripting.FileSystemObject")
Response.Write(fs.GetExtensionName("c:\test\test.htm"))
set fs=nothing
%>

Output:

htm

<전체 FileSystemObject 개체 참조