Help for this page

Select Code to Download


  1. or download this
    # unset the RO bit on a file
    system("attrib -r filename.csv");
    ...
    
    # change file back to RO
    system("attrib +r filename.csv");
    
  2. or download this
    chmod 0777, $file;
    # do stuff that writes to file