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 |
Which function allows you to instantiate an object given its programmatic identifier or progid?
Could Anybody Please tell me What is the script for Find 3rd Largest element in the Array without using a SORT function int Find(int arr[], int size); Thanks in Advance..
how to validate the text in a web table
How to declare an array in vbscript?
Which operator is used for fetching the modulus of the 2 numbers in the vbscript language?
A folder is there inside no of textfiles are avilable. How do count the textfiles. Normally folder means we are using subfolder methods but textfiles is not working for subfolder methods and how do get file name also.
How will you get the last occurrence of one string within another string using vbscript?
write a vb script code to display the vbscript word by word (i e 1st it should display v then b and up to t )
Mention how to assign a date value to a variable?
hi, How will write a regular expression of date in VB scripting.
wht must be the interview question on corinthian information technology solutions incorporated.
How many types of operators are available in the vbscript language?