ASP 복사 방법


❮ 완전한 파일 객체 참조

Copy 메서드는 지정된 파일이나 폴더를 한 위치에서 다른 위치로 복사합니다.

통사론

FileObject.Copy(destination[,overwrite])

FolderObject.Copy(destination[,overwrite])

Parameter Description
destination Required. Where to copy the file or folder. Wildcard characters are not allowed
overwrite Optional. A Boolean value indicating whether an existing file or folder can be overwritten. True indicates that the file/folder can be overwritten, false indicates that the file/folder cannot be overwritten. Default is true.

File 객체의 예

<%
dim fs,f
set fs=Server.CreateObject("Scripting.FileSystemObject")
set f=fs.GetFile("c:\test.txt")
f.Copy("c:\new_test.txt",false)
set f=nothing
set fs=nothing
%>

Folder 객체의 예

<%
dim fs,fo
set fs=Server.CreateObject("Scripting.FileSystemObject")
set fo=fs.GetFolder("c:\test")
fo.Copy("c:\new_test",false)
set fo=nothing
set fs=nothing
%>

❮ 완전한 파일 객체 참조