|
Current Directory
This example show accessing current working directory.
1 | Set shellObj = CreateObject( "Wscript.Shell" ) |
3 | WScript.echo "Current Directory : " & shellObj.CurrentDirectory |
|
It gives the following output,
Current Directory : C:\source\VBS\shell
|
|