What's the best way to do a cross-platform, atomic file replacement in Perl? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T00:46:13Z http://stackoverflow.com/feeds/question/392016 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/392016/whats-the-best-way-to-do-a-cross-platform-atomic-file-replacement-in-perl 3 What's the best way to do a cross-platform, atomic file replacement in Perl? Max 2008-12-24T18:44:19Z 2008-12-25T00:15:44Z <p>I have a very common situation. I have a file, and I need to entirely overwrite that file with new contents. However, the original file is accessed on every page load (this is a web app), so it can't be missing for very long. A few ms is OK (though not ideal), a second is not OK.</p> <p>Right now I do this by writing a temp file to the same directory and then renaming that temp file to the name of the new file. I'm just using the normal File::Temp and "rename" to do this, in Perl. I was wondering--is there some other recommended/better way to do this? Preferably one that doesn't require a CPAN module, as this is the only place in my system that I need to do this, and I don't want a whole new dependency just for this.</p> <p>Oh, and all of this has to work on Windows, Linux, BSD, OS X, Solaris, and most other common platforms.</p> <p><a href="http://mxr.mozilla.org/mozilla/source/webtools/bugzilla/Bugzilla/Config.pm#272" rel="nofollow">Here is the code in question</a>, for those interested.</p> http://stackoverflow.com/questions/392016/whats-the-best-way-to-do-a-cross-platform-atomic-file-replacement-in-perl/392037#392037 8 Answer by Adam Bellaire for What's the best way to do a cross-platform, atomic file replacement in Perl? Adam Bellaire 2008-12-24T18:53:25Z 2008-12-24T18:53:25Z <p>Your method seems just fine. It's quick, it's atomic, it uses core modules only, and File::Temp is a safe way to deal with temporary files. What more do you need?</p> http://stackoverflow.com/questions/392016/whats-the-best-way-to-do-a-cross-platform-atomic-file-replacement-in-perl/392040#392040 4 Answer by Paul Tomblin for What's the best way to do a cross-platform, atomic file replacement in Perl? Paul Tomblin 2008-12-24T18:54:38Z 2008-12-24T18:54:38Z <p>I'd do it the same way you're doing it. At least on Unix-type OSes, a file rename is guaranteed to be atomic so you won't have any instants where either the original or the new files isn't there.</p> http://stackoverflow.com/questions/392016/whats-the-best-way-to-do-a-cross-platform-atomic-file-replacement-in-perl/392069#392069 -1 Answer by HUAGHAGUAH for What's the best way to do a cross-platform, atomic file replacement in Perl? HUAGHAGUAH 2008-12-24T19:07:33Z 2008-12-24T19:07:33Z <p>Rename is sufficient. However:</p> <p>Is your temporary file at risk for race conditions? The filename should be randomized so nobody can cause problems by inserting their own file. Use an interface to mkstemp() if possible.</p>