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 |
Explain the asc function?
Which conditional statement is the most convenient one to use in the case of multiple conditions in the vbscript language?
What is wrong with the following code: <%afname="header.asp"%><!?#include file ="<%=afname%>"?>
How to write a VBscript for web page performance test i need a code send if any knows the code If any knows VBScript book plz send to me the link to my mail plz
What is parametrization ?
Which object provide information about a single runtime error in a vbscript?
What if you do not specify anything when you call a procedure?
How can you create an object in vbscript?
What is the use of "Option Explicit"?
I want good books or good sites for scripting.Can any one help me.
write a vb script to find the size of d drive?
How will you get the last occurrence of one string within another string using vbscript?