write a vb script to rename a folder from tree4 to tree7
Answers were Sorted based on User's Feedback
Answer / ranadheer
dim vfso
set vfso=createobject("scripting.filesystemobject")
vfso.renamefolder "C:\tree4","C:\tree7"
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / usha
set fso=createobject("scripting.filesystemobject")
set f=fso.getfolder("C:Tree4")
f.name="Tree7"
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / mudaseer
dim vfso
set vfso=createobject("scripting.filesystemobject")
vfso.movefolder "C:\tree4","C:\tree7"
| Is This Answer Correct ? | 1 Yes | 2 No |
Which keyword is used to declare a variable in the vbscript language?
what is extension of the file if its saved from recovery manger to some drive
How can we return a value from User Defined Function ? For Eg. we have 2 functions. In Fun1 i am getting 2 values (a,b) and i am addding those 2 and storing in to another var (c). Now i want to pass that var(c) to another function (fun2). What will be the script?
Explain about .wsf files?
How do you get the value of a combo box in Javascript?
What are the 2 ways to pass a value to the function?
i have to open a notepad having no. of words in dat file by recording in qtp and then find a particular word and display true or false
how to genarate a random numbers in vb?
Which event is triggered when mouse focus comes out of an element in the vbscript language?
What is select case statement?
Write a program to create a Dynamic array of size 5 elements and display all the elements.
write a vb script to generate the following pattern ***** **** *** ** *