<전체 FileSystemObject 개체 참조
GetDrive 방법은 drivespec 매개 변수에 의해 지정된 드라이브 개체를 반환합니다.
통사론
FileSystemObject.GetDrive(drivespec)
매개 변수 | 기술 |
---|---|
drivespec | 필요합니다. 드라이브 문자가 될 수 (c) , 또는 드라이브 문자 다음에 콜론 (c:) , 또는 콜론과 경로 분리 한 다음 드라이브 문자 (c:\) , 또는 네트워크 공유 사양 (\\computer2\share1) |
예
<%
dim fs,d
set fs=Server.CreateObject("Scripting.FileSystemObject")
set d=fs.GetDrive("c:\")
set fs=nothing
%>
<전체 FileSystemObject 개체 참조