how to delete folder test3,test4 and test5 using vbscript?
Answer Posted / 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 |
Post New Answer View All Answers
can anyone tell me the procedure of interview held in applabs
How can constants be declared in the vbscript language?
Which keyword is used to declare a variable in the vbscript language?
What is byref and byval parameters in vbscript?
Write a function for Instr(). We need to write a function that works as same as Instr(). Code or Even pseudo code is good enough for me.?
Explain different types of segment?
When does ‘on click of button’ event gets triggered in the vbscript language?
1.I want to establish connection with excel and also want to fetch the data using SQL queries. 2.the code should be written in such a way that in future if I want to migrate from excel to MS excess database , then there should be minimal changes.
Explain some uses of vb script?
How will you get a string with the specified character the specified number of times in vbscript?
How to make professional test report using vbscript code in UFT, which gives us complete analysis of the test.
Which operator can be used to change the value of the operand or change the state of the condition?
Mention how you can call vbscript functions?
How to pass argument by reference to a function in vbscript?
How to open excel in vb script?