Name
GetVolumeName -- get a volume name
Synopsis
name$ = GetVolumeName(vol$)
Function
This function tries to get the name of the volume specified by vol$. If it is successful, the volume's name is returned to name$.

Inputs
vol$
a DOS volume descriptor
Results
name$
name of the volume
Example
n$=GetVolumeName("df0:")
Print(n$)
The above code prints the name of the volume in drive df0: (if there is any).

Show TOC