in reply to unlink($ful) does not delete
Works fine for me. try printing param(f) and $ful before you unlink.#!/usr/bin/perl use strict; use warnings; my $thef = "f"; my $ful="../../../".$thef; print "$ful\n"; unlink($ful) or die "unable to delete $ful: $!\n"
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^2: unlink($ful) does not delete
by daithimcc (Novice) on Dec 07, 2007 at 17:58 UTC | |
by tcf03 (Deacon) on Dec 07, 2007 at 18:34 UTC |