Help for this page

Select Code to Download


  1. or download this
    unless (-e $file) {
            open(FH,">", "$file") or die $!;
    }
    
  2. or download this
    use Fcntl;
    # Open $file for writing unless it already exists
    sysopen(FH, $file, O_WRONLY|O_EXCL|O_CREAT) or die $!;