3초기억력

ASP - 확장자 추출 하기 본문

플밍_ASP

ASP - 확장자 추출 하기

잠수콩 2011. 3. 29. 15:03


<%
   filePath = "/datguri.net/aspExt.asp"
   fileExt = Mid(filePath, InStrRev(filePath, ".") + 1)
   response.Write "파일 확장자는 " & fileExt
%>
Comments