Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Hard drives
Message
Information générale
Forum:
Visual FoxPro
Catégorie:
Autre
Titre:
Divers
Thread ID:
00529293
Message ID:
00529305
Vues:
17
>Hi,
>sorry to ask... I think I've already read a thread about this... but I can not use search options... so if someone can help me...
>
>How do I know how many fixed drives has a machine? and their letter..
>
>sorry again.
>fabian

Use Drivetype() function and loop through the letters of the alphabet
lcAlpha = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
lcDrives = ""
for lnI = 1 to 26
    lcLetter = substr(lcAlpha, lnI, 1)
    if DriveType(lcletter) = 3
       lcDrives = lcDrives + lcLetter
    endif
endfor
return lcDrives
Mark McCasland
Midlothian, TX USA
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform