Help for this page

Select Code to Download


  1. or download this
    if (-e $file) {
            open(FH,">","$file") or die $!;
    }
    
  2. or download this
    use Fcntl;
    
    sysopen(FH, $file, O_WRONLY|O_TRUNC|O_CREAT, 0600)
            or die $!;