<อ้างอิงวัตถุไฟล์ที่สมบูรณ์
วิธีการย้ายย้ายไฟล์หรือโฟลเดอร์ที่ระบุจากสถานที่หนึ่งไปยังอีก
วากยสัมพันธ์
FileObject.Move(destination)
FolderObject.Move(destination)
พารามิเตอร์ | ลักษณะ |
---|---|
destination | จำเป็นต้องใช้ ไหนจะย้ายไฟล์หรือโฟลเดอร์ อักขระตัวแทนไม่ได้รับอนุญาต |
ตัวอย่างสำหรับวัตถุแฟ้ม
<%
dim fs,f
set fs=Server.CreateObject("Scripting.FileSystemObject")
Set f=fs.GetFile("c:\test.txt")
f.Move("c:\test\test.txt")
set f=nothing
set fs=nothing
%>
ตัวอย่างสำหรับวัตถุโฟลเดอร์
<%
dim fs,fo
set fs=Server.CreateObject("Scripting.FileSystemObject")
set fo=fs.GetFolder("c:\test")
fo.Move("c:\asp\test")
set fo=nothing
set fs=nothing
%>
<อ้างอิงวัตถุไฟล์ที่สมบูรณ์