Extending upon one of previous posts on QTP and File handling, I would quickly tell you how to handle folders with QTP.

For all the examples shown below I will assume that the file to be created/deleted is at C: drive.

How to create a folder with QTP?

  1. Dim strDrive, strfoldername,objFSO, objFolder, strPath
  2.  
  3. strDrive = "c:" 'Drive where you want to create the folder
  4.  
  5. strfoldername="test" 'Name of the folder to be created
  6.  
  7. strPath= strDrive&strfoldername
  8.  
  9. ' Create FileSystemObject. We have already seen this in the earlier post.
  10.  
  11. Set objFSO = CreateObject("Scripting.FileSystemObject")
  12.  
  13. On Error Resume Next ' Incase folder already exist
  14.  
  15. ' Create a Folder, using strPath
  16.  
  17. Set objFolder = objFSO.CreateFolder(strPath)
  18.  
  19. If err.Number = 58 then 'VB Script Run Time Error 58 -File Already exists
  20.  
  21. msgbox "Folder already exist at" & strPath
  22.  
  23. exitTest
  24.  
  25. End If
  26.  
  27. msgbox "Folder created is at " & strPath

How to delete a folder?

Take the first 6 lines from the code above and add these lines

  1. On Error Resume Next 'Incase folder is not found
  2.  
  3. objFSO.DeleteFolder(strPath)
  4.  
  5. If err.Number =76 then 'VB Script Run Time Error 76 -File Not Found
  6.  
  7. msgbox "Folder Not Found at " & strPath
  8.  
  9. exitTest
  10.  
  11. End If
  12.  
  13. msgbox "Folder is deleted from " & strPath

How to find out if a folder exists on a drive?

Instead of using the err object as shown above, you can simply use .FolderExists()

  1. If objFSO.FolderExists(strpath)= True then
  2.  
  3. msgbox Folder Already Exists
  4.  
  5. End If