VBScript (2) working with folders

Source: Internet
Author: User
Working with folderscreating the basic folder

Just the steps

To create a folder

1.

Create a file system object by using Createobject.

2.

Use the createfolder command to create the folder.

Createbasicfolder. vbs

Set objFSO = CreateObject("Scripting.FileSystemObject")
Set objFolder = objFSO.CreateFolder("c:\fso1")

 

Creating Multiple folders

Createmultifolders. vbs

 
Option Explicit
Dim numFolders
Dim folderPath
Dim folderPrefix
Dim objFSO
Dim objFolder
Dim i
Dim objSHell
Dim myDocs
 
Set objSHell = CreateObject("wscript.shell")
myDocs = objSHell.SpecialFolders("mydocuments")
 
numFolders = 10
folderPath = myDocs & "\"
 
folderPrefix = "TempUser"
 
For i = 1 To numFolders
  Set objFSO = CreateObject("Scripting.FileSystemObject")
  Set objFolder = objFSO.CreateFolder(folderPath & folderPreFix & i)
Next
WScript.Echo(i - 1 & " folders created")

 

Note: when FsO creates a folder, its parent directory must have been created. Otherwise, creation will fail.

 

Deleting a folderdeletebasicfolder. vbs
Set objFSO = CreateObject("Scripting.FileSystemObject")
objFSO.DeleteFolder("c:\fso")
 
Deletemultifolders. vbs
Option Explicit
Dim numFolders
Dim folderPath
Dim folderPrefix
Dim objFSO
Dim objFolder
Dim i
 
numFolders = 10
folderPath = "C:\"
folderPrefix = "TempUser"
 
For i = 1 To numFolders
Set objFSO = CreateObject("Scripting.FileSystemObject")
objFSO.DeleteFolder(folderPath & folderPreFix & i)
Next
WScript.Echo(i - 1 & " folders deleted")
 
For ..... Next usage

Just the steps

To implement for... Next

1.

On a new line in the script, type I followed by a variable and a count (such as for I = 1 to 10 ).

2.

On the next line, type the command to be completed MED.

3.

On the next line, type next.

 

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.