ASP MoveFolder 메서드


❮ 완전한 FileSystemObject 개체 참조

MoveFolder 메서드는 한 위치에서 다른 위치로 하나 이상의 폴더를 이동합니다.

통사론

FileSystemObject.MoveFolder source,destination

Parameter Description
source Required. The path to the folder/folders to be moved. Can contain wildcard characters in the last component.
destination Required. Where to move the folder/folders. Cannot contain wildcard characters

예시

<%
dim fs
set fs=Server.CreateObject("Scripting.FileSystemObject")
fs.MoveFolder "c:\test\web\","c:\windows\"
set fs=nothing
%>

❮ 완전한 FileSystemObject 개체 참조