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 loose binding? Why is it not a good practice to use it?
what is the code in QTP to take screen shot? Please send me any one to my mail id. my mailid is manu.sanepalli@gmail.com
How to Enter Values on the Command promt using VB script
How to use QTP Object in .vbs(vbscript file) file Ex: Browser().., wait(), exist() and etc...
Which data type/types are supported by vbscript language and what are their specialties?
Difference between Do while loop and while wend loop
Write VB script to convert from feet to inches(hint 1feet=12 inches)
which is the best institute in banglaore for software testing?
Hi, I need to accept user inputs for login at runtime.I know i can use Inputbox but how to proceed further that i dont know. Thanks in advance
What is the differene between QTP 8.2 and QTP 9.0 and QTP 9.1,Pls give me answer ASAP.
accept a string & display whether a is present or not
How to delete a cookie using vbscript?