6 lines
94 B
Perl
6 lines
94 B
Perl
|
#!/usr/bin/perl -w
|
||
|
use Win32;
|
||
|
|
||
|
$fstype = Win32::FsType();
|
||
|
|
||
|
print "File System=$fstype\n";
|