Prev
Open Object Rexx
Next
Code style
dark
electric
light
print
rgfdark
rgflight
tokio-day
tokio-night
vim-dark-blue
vim-dark-darkblue
vim-dark-desert
vim-dark-elflord
vim-dark-evening
vim-dark-industry
vim-dark-koehler
vim-dark-murphy
vim-dark-pablo
vim-dark-ron
vim-dark-slate
vim-dark-torte
vim-light-delek
vim-light-morning
vim-light-peachpuff
vim-light-shine
vim-light-zellner
8.13. SysDriveMap (Windows only)
Returns a string listing accessible drives (separated by blanks) in the form:
C: D: ...
.
Parameters:
drive
The first drive letter of the drive map. The default is "C:".
opt
The drivemap option. This can be:
"USED"
returns the drives that are accessible or in use, including all local and remote drives. This is the default.
"FREE"
returns drives that are free or not in use.
"LOCAL"
returns only local drives.
"REMOTE"
returns only remote drives, such as redirected LAN resources or installable file system (IFS) attached drives.
"REMOVABLE"
returns removable drives.
"CDROM"
returns CD-ROM drives.
"RAMDISK"
returns drives assigned from RAM.
Example 8.5. RexxUtil — SysDriveMap
say
SysDriveMap
(
"
C:
"
,
"
USED
"
)
-- C: M: N: O: P: R: Z:
Prev
8.12. SysDriveInfo (Windows only)
Up
Home
Next
8.14. SysDropRexxMacro