Beefy Boxes and Bandwidth Generously Provided by pair Networks Bob
more useful options
 
PerlMonks  

Re^5: USB Drive Letter Assignment in Win32

by Zero_Flop (Pilgrim)
on Jun 08, 2004 at 15:49 UTC ( [id://362519]=note: print w/replies, xml ) Need Help??

This is an archived low-energy page for bots and other anonmyous visitors. Please sign up if you are a human and want to interact.


in reply to Re^4: USB Drive Letter Assignment in Win32
in thread USB Drive Letter Assignment in Win32

From the information at the Roth site, you will need probably two calls, 
GetDrives to get an array of all drives and GetVolumeInfo. (sorry not GetVolume)


GetDrives($Type)
This will return an array of drive roots. If no parameters are passed then the list will be all drives 
(cdroms, floppy, fixed, net, etc.).
If you specify $Type the list will only contain drive roots
 that are of the specified type.
The types are:

DRIVE_FIXED
DRIVE_REMOVABLE
DRIVE_REMOTE
DRIVE_CDROM
DRIVE_RAMDISK

Example:

@Drives = Win32::AdminMisc::GetDrives();
@CDROMs = Win32::AdminMisc::GetDrives( DRIVE_CDROM );
Returns:

nothing if unsuccessful
array if successful




GetVolumeInfo( $Drive )
This will return a hash of drive volume information for the $Drive drive. 
$Drive must be a root directory such as "c:\\" or "X:/". $Drive may be a UNC.
Returned keys are:

$Volume...............The volume label for the drive.
$Serial...............The serial number for the drive (in decimal)
$MaxFileNameLength....The max number of chars a file name can be for drive.
SystemFlag...........System flags which can be combination of:

FS_CASE_IS_PRESERVED....The case of filenames are stored on the disk.
(for example DOS makes file names uppercase)
FS_CASE_SENSITIVE ......File system supports case sensitive filenames.
FS_UNICODE_STORED_ON_DISK...File system supports unicode filenames.
FS_PERSISTENT_ACLS......File System saves and enforces access control
lists (aka file permissions)
FS_FILE_COMPRESSION ....File system supports file based compression.
FS_VOL_IS_COMPRESSED....Volume is compressed (as in using DoubleSpace).

$::ThisPageSystemName.......The name of the format of the drive (eg. NTFS, FAT)


Example:

if( %Volume = Win32::AdminMisc::GetVolume("//server1/c\$") )
{
    my $Serial = uc( sprintf( "%x", $Volume{Serial} ) );
    $Serial =~ s/(....)(....)/$1-$2/;
    print "The drive is formatted with the $Volume{FileSystemName} format.\n";
    print "The volume serial number is: $Serial\n%quot;;

}
Returns:

 hash if successful
 undef if not successful
  • Comment on Re^5: USB Drive Letter Assignment in Win32

Replies are listed 'Best First'.
Re^6: USB Drive Letter Assignment in Win32
by traveler (Parson) on Jun 09, 2004 at 10:38 UTC
    Great. Thank you. I have a short demo working:
    use Win32::AdminMisc; @drives = Win32::AdminMisc::GetDrives( DRIVE_REMOVABLE ); foreach $drive (@drives){ %Info = Win32::AdminMisc::GetVolumeInfo($drive); # print "Drive $drive label is $Info{Volume}\n"; print "Found USBDRIVE at $drive\n" if $Info{Volume} eq 'USBDRIVE'; }

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://362519]
help
Sections?
Information?
Find Nodes?
Leftovers?
    Notices?
    hippoepoptai's answer Re: how do I set a cookie and redirect was blessed by hippo!
    erzuuliAnonymous Monks are no longer allowed to use Super Search, due to an excessive use of this resource by robots.