Skip to content

Instantly share code, notes, and snippets.

View rehsack's full-sized avatar

Jens Rehsack rehsack

  • Freelancer
  • Cologne/Germany
View GitHub Profile
@rehsack
rehsack / gist:7194114
Created October 28, 2013 09:52
Win32::DriveInfo dump for S::FS
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);