ASP
ASP 확장자 구하기
엘로드넷
2015. 4. 18. 08:17
ASP 확장자 구하기 :
filePath = "/home/www/test.jpg"
fileExt = Mid(filePath, InStrRev(filePath, ".") + 1)
response.Write "파일 확장자는 " & fileExt
fileExt = Mid(filePath, InStrRev(filePath, ".") + 1)
response.Write "파일 확장자는 " & fileExt