<전체 파일 객체 참조
복사 방법 복사 한 위치에서 다른 위치에 지정된 파일이나 폴더.
통사론
FileObject.Copy(destination[,overwrite])
FolderObject.Copy(destination[,overwrite])
매개 변수 | 기술 |
---|---|
destination | 필요합니다. 어디에서 파일 또는 폴더를 복사합니다. 와일드 카드 문자는 허용되지 않습니다 |
overwrite | 선택 과목. 기존 파일 또는 폴더 여부를 나타내는 부울 값을 덮어 쓸 수 있습니다. 진정한 거짓 파일 / 폴더를 덮어 쓸 수 없음을 나타냅니다, 파일 / 폴더를 덮어 쓸 수 있음을 나타냅니다. 기본값은 사실이다. |
파일 객체의 예
<%
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
%>
폴더 개체에 대한 예
<%
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
%>
<전체 파일 객체 참조