Ultimele tutoriale de dezvoltare web
 

ASP Mutați Metoda


<Complete Reference dosar obiect

Metoda Mutare mută fișierul specificat sau dosar dintr-o locație la alta.

Sintaxă

FileObject.Move(destination)

FolderObject.Move(destination)

Parametru Descriere
destination Necesar. În cazul în care pentru a muta fișierul sau dosarul. metacaractere nu sunt permise

Exemplu pentru obiectul fișier

<%
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
%>

Exemplu pentru obiect Folder

<%
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
%>

<Complete Reference dosar obiect