From: [EMAIL PROTECTED]
> It appears that the following unlink is failing on Win2k (Service Pack
> 3). It did work on Win 2k (sp2) & Win NT 4.0.
> 
> Have any one seen this?
> 
> I am using network setup Active Perl 5.6.1 (Build 633)
> 
> $unlink_ccpid = unlink("$cc_ppid");
>    exit (0);

Maybe the file is locked. Or the path is wrong. Also the quotes are 
not needed there.

You should print the error message, maybe that will tell you what's 
wrong:

  unlink( $cc_ppid)
    or die "Cannot delete '$cc_pid': $^E";

Jenda

===== [EMAIL PROTECTED] === http://Jenda.Krynicky.cz =====
When it comes to wine, women and song, wizards are allowed 
to get drunk and croon as much as they like.
        -- Terry Pratchett in Sourcery

_______________________________________________
ActivePerl mailing list
[EMAIL PROTECTED]
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs

Reply via email to