in reply to Re^4: Overwriting temp file
in thread Overwriting temp file

'+>' means that you want both read and write access, but note that it clobbers the file first. For a read/write update that doesn't clobber the file first, do '+<', for non-text files mostly. See: open.