Hallo,
ja, das geht mit GetVolumeInformation(). Hier ein kleines Beispiel:
DEF GetVolumeInformation(8) !"KERNEL32","GetVolumeInformationA"
declare drive#,name#
dim drive#,4
dim name#,16
string drive#,0 = "C:\"
GetVolumeInformation(drive#,name#,16,0,0,0,0,0)
print @string$(name#,0)
waitinput
dispose drive#
dispose name#
end
Ich hoffe, ich konnte Dir helfen.
MfG
Sebastian
|