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 |
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
a;;b;c;;;d in this string output is abcd will come how can we do that in vbscript in QTP testing?
How will you convert a given number to long in vbscript?
Plzzzzzzz can any one tell me which is the best institute in hyderabad for learing VBScript. plz do answer guys its urgent plzzzzzzz. thanks in advance.
Explain the arrays in vb script?
What is the use of the ‘open’ method to work with the database in the vbscript language and what connection string is passed in the same and what is its usage?
Explain about adodb.stream class?
how to declare a variable in vbscript using vbscript
Hi, Anybody could you Please tell me How to write the script for Checking whether given number is Prime Number or not..Thanks in Advance
write a vbscript for finding the sum of the numbers from 1- 50
Which in-built functions are used to convert the specified expression in the form of date and string in the vbscript language?
How regexp.execute method works?