write a vb script create 5 folders test1 test2 test3 test4
test5
Answers were Sorted based on User's Feedback
Answer / mudaseer
set fso=createobject("scripting.filesystemobject")
for i=1 to 5
fso.createfolder "C:\test" &i
next
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / simha
It is correct. automatically created 5 folders using this
VB script.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / manjunathareddy
Dim Fso
Dim oFolder
Set Fso=CreateObject("Scripting.FileSystemObject")
For i=1 to 5
Set oFolder=Fso.CreateFolder("C:\Test"&i)
Next
| Is This Answer Correct ? | 0 Yes | 0 No |
print the array values in ascending order?
How to check the particular window is exist or not with out using check points
Mention what are the rules to name variable in vbscript?
How to get the length of the string by making use of the string function?
Explain the .wsf files?
How to assign a date value to a variable?
write a vb script to display the number is odd or even and whether it is divisible by 9 or not
how to delete folder test3,test4 and test5 using vbscript?
write any ttest cases using check points and parameterization
about vb scripting programs this type of all question& answers
Explain about the functionality of vb script?
accept a string & display whether a is present or not