El método de movimiento ASP se utiliza para mover el archivo o carpeta especificado al destino dado.
Sintaxis:
-
Para objeto de archivo:
FileObject.Move(destination)
-
Para el objeto Carpeta:
FolderObject.Move(destination)
Parámetros: Este método tiene un solo parámetro como se mencionó anteriormente y se analiza a continuación:
- destino: Especifica el destino donde se moverá el archivo o carpeta. No permite caracteres comodín. Este es un parámetro requerido.
Los siguientes ejemplos muestran el método Move de ASP .
Ejemplo 1: El siguiente código demuestra el método ASP File.Move.
ASP
<% dim fs,f,ts set fs=Server.CreateObject("Scripting.FileSystemObject") 'Getting the file to be copied set f=fs.GetFile("d:\GFG.txt") 'Reading the contents of the file set ts=f.OpenAsTextStream(1) Response.Write("Original File Content: " & ts.ReadAll) ts.Close 'Moving the file to the given path f.Move("d:\newfolder\GFG.txt") Response.write("<br>" & "File is Moved!" & "<br>") 'Getting the moved file set f=fs.GetFile("d:\newfolder\GFG.txt") 'Reading the contents of the moved file set ts=f.OpenAsTextStream(1) Response.Write("Moved File Content: " & ts.ReadAll) ts.Close set f=nothing set fs=nothing %>
Producción:
Original File Content: This is an example file File is Moved! Moved File Content: This is an example file
Ejemplo 2: El siguiente código demuestra el método Folder.Move de ASP.
ASP
<% dim fs,f,ts set fs=Server.CreateObject("Scripting.FileSystemObject") 'Getting the folder to be copied set f=fs.GetFolder("d:\GFG") 'Moving the folder to the given path f.Move("d:\newfolder\GFG") Response.write("Folder is Moved!") 'Getting the moved folder set f=fs.GetFolder("d:\newfolder\GFG") Response.write("<br>" & "Folder successfully accessed") set f=nothing set fs=nothing %>
Producción:
Folder is Moved! Folder successfully accessed
Publicación traducida automáticamente
Artículo escrito por ManasChhabra2 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA