Beefy Boxes and Bandwidth Generously Provided by pair Networks
go ahead... be a heretic
 
PerlMonks  

Re^2: Error with GetDRIVE() when using a mapped drive

by Loops (Curate)
on Nov 03, 2014 at 17:02 UTC ( [id://1105923]=note: print w/replies, xml ) Need Help??


in reply to Re: Error with GetDRIVE() when using a mapped drive
in thread Error with GetDRIVE() when using a mapped drive

You have a syntax error in your edit. Likely a missing semicolon at the end of a line.

  • Comment on Re^2: Error with GetDRIVE() when using a mapped drive

Replies are listed 'Best First'.
Re^3: Error with GetDRIVE() when using a mapped drive
by vanz (Initiate) on Nov 04, 2014 at 15:26 UTC
    Hi, Here is the script
    #!perl use warnings; use strict; use Win32::OLE; my $d = $fs->GetDrive('Y:') or die ; my $TotalSize = $d->{TotalSize}; my $FreeSpace = $d->{FreeSpace}; my $usedSpace = $d->{TotalSize} -= $d->{FreeSpace}; my $AvailableSpace = $d->{AvailableSpace} *=100; my $AvailUsed = $AvailableSpace /= $d->{TotalSize}; my $SpaceLeft = $d->{AvailableSpace} /= $AvailUsed; my $MappedDriveSpaceAvailable = $AvailUsed *= 100; print $MappedDriveSpaceAvailable;

    I have been looking and I do not see any syntax errors. any suggestions?

      Yes, you completely dropped the creation of the OLE filesystem object, thus $fs is left undefined. And you dropped the error message from the die statement.

      my $fs = Win32::OLE->CreateObject('Scripting.FileSystemObject'); my $d = $fs->GetDrive('Y:') or die "GetDrive failed $!";

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1105923]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others learning in the Monastery: (3)
As of 2024-04-19 17:11 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found