Created
October 28, 2013 09:52
-
-
Save rehsack/7194114 to your computer and use it in GitHub Desktop.
Win32::DriveInfo dump for S::FS
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use DDP; | |
use Win32::DriveInfo; | |
for my $func (qw(DriveType VolumeInfo)) { | |
for my $drv (qw(a c)) { | |
$res{$func . "-" . $drv} = [ Win32::DriveInfo->can($func)->($drv) ]; | |
} | |
} | |
$res{GetVersionEx} = Win32::DriveInfo::GetVersionEx(); | |
p(%res); |
wchristian
commented
Oct 28, 2013
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment