Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

The use of MoveFile method in VBS

2025-01-16 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/03 Report--

This article mainly explains "the use of MoveFile method in VBS". The content of the explanation in this article is simple and clear, and it is easy to learn and understand. Please follow the editor's train of thought to study and learn "the use of MoveFile method in VBS".

Move one or more files from one location to another.

Object.MoveFile source, destination

Parameter object

Required. Should be the name of FileSystemObject.

Source

Required. The path of the file to be moved. The source parameter string can only use wildcards in the last part of the path.

Destination

Required. Specify a path that indicates that you want to move the file to the target location. The destination parameter cannot contain wildcards.

Description

If source contains wildcards or destination ends with a path separator (\), it is assumed that destination specifies an existing folder and moves matching files to that folder. Otherwise, assume that destination is the target file to create. In either case, when you move a single file, the following three situations may occur:

If the destination does not exist, the file is moved. This is what usually happens.

If destination is a file that already exists, an error occurs.

If destination is a directory, an error occurs.

Errors can also occur if you use wildcards in source but do not match the file. The MoveFile method stops when the first error is encountered. This method does not undo any changes made before the error occurred.

The following example illustrates how to use the MoveFile method:

Sub MoveAFile (Drivespec) Dim fso Set fso = CreateObject ("Scripting.FileSystemObject") fso.MoveFile Drivespec, "c:\ windows\ desktop\" notice that the GetParentFolderName method works only on known paths, it cannot establish a path, nor can it determine whether the specified path exists.

Thank you for your reading, the above is the content of "the use of MoveFile method in VBS". After the study of this article, I believe you have a deeper understanding of the use of MoveFile method in VBS, and the specific use needs to be verified in practice. Here is, the editor will push for you more related knowledge points of the article, welcome to follow!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report