<전체 FileSystemObject 개체 참조
DriveExists 방법은 지정된 드라이브가 있는지 여부를 나타내는 부울 값을 반환합니다. 드라이브가 존재하고, 그렇지 않은 경우는 false의 경우는 true를 돌려줍니다.
통사론
FileSystemObject.DriveExists(drive)
매개 변수 | 기술 |
---|---|
drive | 필요합니다. 드라이브 문자 또는 전체 경로 지정 |
예
<%
dim fs
set fs=Server.CreateObject("Scripting.FileSystemObject")
if fs.DriveExists("c:")=true then
response.write("Drive c: exists!")
else
response.write("Drive c: does not exist.")
end If
set fs=nothing
%>
<전체 FileSystemObject 개체 참조