ASP Copy ·½·¨

¶¨ÒåºÍÓ÷¨

Copy ·½·¨°ÑÎļþ»òÎļþ¼Ð´ÓÒ»¸öλÖÿ½±´µ½ÁíÒ»¸öλÖá£

Óï·¨£º

FileObject.Copy(destination[,overwrite])
FolderObject.Copy(destination[,overwrite])
²ÎÊý ÃèÊö
destination ±ØÐèµÄ¡£¸´ÖÆÎļþ»òÎļþ¼ÐµÄÄ¿µÄµØ¡£²»ÔÊÐíʹÓÃͨÅä·û¡£
overwrite ¿ÉÑ¡µÄ¡£Ö¸Ê¾ÊÇ·ñ¿É¸²¸ÇÒÑÓÐÎļþ»òÎļþ¼ÐµÄ²¼¶ûÖµ¡£True ±íʾÎļþ»òÎļþ¼Ð¿É±»¸²¸Ç£¬false ±íʾÎļþ»òÎļþ²»Äܱ»¸²¸Ç¡£Ä¬ÈÏÊÇ true¡£

Õë¶Ô File ¶ÔÏóµÄÀý×Ó

<%
dim fs,f
set fs=Server.CreateObject("Scripting.FileSystemObject")
set f=fs.GetFile("c:\test.txt")
f.Copy("d:\new_file.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("d:\new_file",false)
set fo=nothing
set fs=nothing
%>
VUE