body { font-family: Arial, sans-serif; line-height: 1.6; margin: 20px; }
h1, h2, h3 { color: #333; }
code { background-color: #f4f4f4; padding: 2px 5px; border-radius: 3px; }
pre { background-color: #f4f4f4; padding: 15px; border-radius: 5px; overflow-x: auto; }
table { border-collapse: collapse; width: 100%; margin: 20px 0; }
th, td { border: 1px solid #ddd; padding: 8px; text-align: left; }
th { background-color: #f2f2f2; }
.note { background-color: #fff3cd; border: 1px solid #ffeaa7; padding: 10px; border-radius: 5px; margin: 10px 0; }
.nav-links { margin: 20px 0; }
.nav-links a { margin-right: 15px; text-decoration: none; color: #007bff; }
.nav-links a:hover { text-decoration: underline; }
.footer { margin-top: 40px; padding-top: 20px; border-top: 1px solid #eee; font-size: 0.9em; color: #666; }
ASP Move Method
The Move method moves a specified file or folder from one location to another.
Note: Applying the Move method to a File or Folder object performs the same operation as using FileSystemObject.MoveFile or FileSystemObject.MoveFolder. However, note that the FileSystemObject.MoveFile or FileSystemObject.MoveFolder methods can move multiple files or folders.
Syntax
FileObject.Move(destination)
FolderObject.Move(destination)
| Parameter |
Description |
| destination |
Required. The destination where the file or folder is to be moved. Wildcards are not allowed. |
Example for File Object
Example for Folder Object