I know that if I want to copy a file in Python but not overwrite the destination I can use code like this:
if os.path.exists(dest):
raise Exception("Destination file exists!")
else:
shutil.copy2(src, dest)
But the state of the world could change between the time I call os.path.exists
and the time I call copy2
. Is there a more preferred way to copy without overwriting, presumably wherein the copy operation will raise an exception if the destination already exists?
os.fdopen(fd)
perhaps? – Truckage