write a vb script to display the size of the folder,date
created and name of the folder
Answer / mudaseer
dim vfso
vfolder="C:\apple1"
set vfso=createobject("scripting.filesystemobject")
set vf=vfso.getfolder(vfolder)
msgbox vf.datecreated
msgbox vf.size
msgbox vf.name
| Is This Answer Correct ? | 1 Yes | 0 No |
How will you trim the spaces on the left of a string using vbscript?
Which event is triggered when mouse focus comes out of an element in the vbscript language?
find the length of the string without using length function?
Which conditional statement is the most convenient one to use in the case of multiple conditions in the vbscript language?
Which object provide information about a single runtime error in a vbscript?
I want good books or good sites for scripting.Can any one help me.
What is the difference between ByRef and ByVal. When to use ByRef and ByVal
What is the purpose of drive object of scripting.filesystemobject class in vbscript?
What are subprocedures in vbscript?
i need to sort the data using qtp script for this how i need to write a qtp script
What is the purpose of on error resume next statement?
VBscript for QTP,best tutorial?