ClassicASP ASP FileExists Method
페이지 정보
본문
이 Fileexists 메서드는 지정된 파일이 있는지 여부를 나타내는 Boolean 값을 반환합니다. It returns True if the file exists and False if not. 만약 파일이 존재하고 거짓이 아니라면 사실을 반환합니다.
사용방법
FileSystemObject.FileExists(filename)
사용예
<%
dim fs
set fs=Server.CreateObject("Scripting.FileSystemObject")
if fs.FileExists("c:\asp\introduction.asp")=true then
response.write("파일이 있습니다.")
else
response.write("파일이 없습니다.")
end if
set fs=nothing
%>
참고자료
http://www.w3schools.com/ASP/met_fileexists.asp
사용방법
FileSystemObject.FileExists(filename)
사용예
<%
dim fs
set fs=Server.CreateObject("Scripting.FileSystemObject")
if fs.FileExists("c:\asp\introduction.asp")=true then
response.write("파일이 있습니다.")
else
response.write("파일이 없습니다.")
end if
set fs=nothing
%>
참고자료
http://www.w3schools.com/ASP/met_fileexists.asp
댓글목록
등록된 댓글이 없습니다.