http://qs1969.pair.com?node_id=988915


in reply to remove files from the V volume on windows server 2008

Two things. First:

if ( $V_RoundedTotalNumberOfFreeGigabytes < 3.5 && $V_RoundedTotalNumberOfFreeGigabytes == 3.5) {

seems wrong. It can't be both < 3.5 and == 3.5 at the same time. Maybe you want to simply say <= 3.5 ?

Second, readdir returns just the filename. So on the unlink you probably want

unlink $dir_to_process . "/" . $file

Replies are listed 'Best First'.
Re^2: remove files from the V volume on windows server 2008
by fnicholas (Initiate) on Aug 22, 2012 at 13:19 UTC
    Thanks for your help! I appreciate it.