home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Mastering Visual Basic 6
/
mastvb6.iso
/
ch_code
/
ch20
/
scripts
/
spfolder.vbs
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1998-05-09
|
206 b
|
8 lines
' List all special folders on the host computer
Set WShell = Wscript.CreateObject("Wscript.Shell")
For Each Folder In WShell.SpecialFolders
msg = msg & Folder & vbCrLf
Next
MsgBox msg