how to delete folder test3,test4 and test5 using vbscript?
Answers were Sorted based on User's Feedback
Answer / mudaseer
dim vfso
set vfso=createobject("scripting.filesystemobject")
for i=3 to 5
vfso.deletefolder "C:\test" &i
next
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / manjunathareddy
Dim Fso
Set Fso=CreateObject("Scripting.FileSystemObject")
For i=3 to 5
Fso.DeleteFolder("C:\Test"&i)
Next
| Is This Answer Correct ? | 0 Yes | 0 No |
what is the standards used for writing the script in QTP
what is used of Property........End Property loop ? how to write the script for it?
which one is more secure vb script or java script ??????? or both are same ??????
Mention what is vbscript procedures?
Explain about the asc function?
Hi anyone Can Send Solution to the Question wt m posting now Prepare Script for the Bellow Scenario? Login to Gmail Page Open Inbox check Mails save them in a Folder
How to make professional test report using vbscript code in UFT, which gives us complete analysis of the test.
0 Answers College School Exams Tests,
give me any information abou vb script books learn quckly
Inorder to avoid Message box while writing script which alternative method can be used?
write a qtp script to count the number of minimized windows
Which is the default Data types in VBScript?
Explain the difference between POST and GET Method.