FileSystemObject.MoveFile Method (VB6)

Named Arguments

Yes

Syntax

oFileSysObj.MoveFile source , destination

oFileSysObj

Use: Required

Data Type: FileSystemObject object

Any object variable returning a FileSystemObject object.

source

Use: Required

Data Type: String

The path to the file or files to be moved.

destination

Use: Required

Data Type: String

The path to the location where the file or files are to be moved.

Description

Moves a file from one folder to another.

Rules at a Glance

  • If source contains wildcard characters or if destination ends in a path separator, destination is interpreted as a path; otherwise, its last component is interpreted as a filename.

  • If the destination file exists, an error occurs.

  • source can contain wildcard characters, but only in its last component.

  • destination can't contain wildcard characters.

  • Both source and destination can be either absolute or relative paths.

  • Both source and destination can be network paths or share names.

Programming Tips and Gotchas

  • MoveFile resolves both arguments before beginning the operation.

  • Any single file move operation is atomic; that is, any file removed from source is copied to destination. However, if an error occurs while multiple files are being moved, the execution of the function terminates, but files already moved aren't moved back to their previous folder. If a fatal system error occurs during the execution of this method (like a power failure), the worst that can happen is that the affected file is copied ...

Get VB & VBA in a Nutshell: The Language now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.