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