write a vb script to rename a folder from tree4 to tree7
Answer Posted / usha
set fso=createobject("scripting.filesystemobject")
set f=fso.getfolder("C:Tree4")
f.name="Tree7"
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Explain about the support of asp for vb script functionality?
How to Convert Hex color code to color name in VB Script?
Which in-built functions are used to convert the specified expression in the form of date and string in the vbscript language?
Mention what is select case statement?
What is the difference between VBScript and JavaScript?
How strcomp function works?
Write a test case using Test if the images,a particular test exists,check if the page links match,page response is within a certain range,parameterization of the test,the test should comprise of actions,the test should use a custom function,the test should use global repository
Which function is used in the vbscript language to convert the specified expression into a date type value?
Which operator is used for fetching the modulus of the 2 numbers in the vbscript language?
Can any one provide code for Mid(string,start[,length]). I have been asked to write code for Mid(). i.e We need to define our own function say MyMid() which should behave same like built-in Mid function
By default in vbscript the arguments passed to functions and subroutines are by reference or by value?
1. How to handle object implementation change in DP for Ex: i have login page with username,pasword (editboxes),login,cancel(buttons). Here i written DP code for login page with the help properties. My questions: 1.If properites are changing dynamically i will do (i want code for that) 2.if objects are changed dynamcally i will do (i wnat code for that)
Which loop is used in case of arrays in the vbscript language?
How will you get the exponent of the given number in vbscript?
What are the 2 ways to pass a value to the function?