2008-07-01 23:10:51 +08:00
|
|
|
"""
|
|
|
|
Move a file in the safest way possible::
|
|
|
|
|
2009-04-05 12:41:39 +08:00
|
|
|
>>> from django.core.files.move import file_move_safe
|
|
|
|
>>> file_move_safe("/tmp/old_file", "/tmp/new_file")
|
2008-07-01 23:10:51 +08:00
|
|
|
"""
|
|
|
|
|
|
|
|
import os
|
|
|
|
from django.core.files import locks
|
|
|
|
|
|
|
|
try:
|
2008-08-24 01:56:02 +08:00
|
|
|
from shutil import copystat
|
2008-07-01 23:10:51 +08:00
|
|
|
except ImportError:
|
2008-08-30 04:00:55 +08:00
|
|
|
import stat
|
2008-08-24 01:56:02 +08:00
|
|
|
def copystat(src, dst):
|
|
|
|
"""Copy all stat info (mode bits, atime and mtime) from src to dst"""
|
|
|
|
st = os.stat(src)
|
|
|
|
mode = stat.S_IMODE(st.st_mode)
|
|
|
|
if hasattr(os, 'utime'):
|
|
|
|
os.utime(dst, (st.st_atime, st.st_mtime))
|
|
|
|
if hasattr(os, 'chmod'):
|
|
|
|
os.chmod(dst, mode)
|
|
|
|
|
|
|
|
__all__ = ['file_move_safe']
|
|
|
|
|
|
|
|
def _samefile(src, dst):
|
|
|
|
# Macintosh, Unix.
|
|
|
|
if hasattr(os.path,'samefile'):
|
|
|
|
try:
|
|
|
|
return os.path.samefile(src, dst)
|
|
|
|
except OSError:
|
|
|
|
return False
|
|
|
|
|
|
|
|
# All other platforms: check for same pathname.
|
|
|
|
return (os.path.normcase(os.path.abspath(src)) ==
|
|
|
|
os.path.normcase(os.path.abspath(dst)))
|
2008-07-01 23:10:51 +08:00
|
|
|
|
|
|
|
def file_move_safe(old_file_name, new_file_name, chunk_size = 1024*64, allow_overwrite=False):
|
|
|
|
"""
|
|
|
|
Moves a file from one location to another in the safest way possible.
|
|
|
|
|
2009-04-05 12:41:39 +08:00
|
|
|
First, tries ``os.rename``, which is simple but will break across filesystems.
|
|
|
|
If that fails, streams manually from one file to another in pure Python.
|
2008-07-01 23:10:51 +08:00
|
|
|
|
|
|
|
If the destination file exists and ``allow_overwrite`` is ``False``, this
|
|
|
|
function will throw an ``IOError``.
|
|
|
|
"""
|
|
|
|
|
|
|
|
# There's no reason to move if we don't have to.
|
2008-08-24 01:56:02 +08:00
|
|
|
if _samefile(old_file_name, new_file_name):
|
2008-07-01 23:10:51 +08:00
|
|
|
return
|
|
|
|
|
|
|
|
try:
|
2008-08-24 01:56:02 +08:00
|
|
|
os.rename(old_file_name, new_file_name)
|
2008-07-01 23:10:51 +08:00
|
|
|
return
|
|
|
|
except OSError:
|
|
|
|
# This will happen with os.rename if moving to another filesystem
|
2008-08-24 01:56:02 +08:00
|
|
|
# or when moving opened files on certain operating systems
|
2008-07-01 23:10:51 +08:00
|
|
|
pass
|
|
|
|
|
2008-08-24 01:56:02 +08:00
|
|
|
# first open the old file, so that it won't go away
|
|
|
|
old_file = open(old_file_name, 'rb')
|
2008-08-12 00:51:18 +08:00
|
|
|
try:
|
2008-08-24 01:56:02 +08:00
|
|
|
# now open the new file, not forgetting allow_overwrite
|
|
|
|
fd = os.open(new_file_name, os.O_WRONLY | os.O_CREAT | getattr(os, 'O_BINARY', 0) |
|
|
|
|
(not allow_overwrite and os.O_EXCL or 0))
|
|
|
|
try:
|
|
|
|
locks.lock(fd, locks.LOCK_EX)
|
|
|
|
current_chunk = None
|
|
|
|
while current_chunk != '':
|
|
|
|
current_chunk = old_file.read(chunk_size)
|
|
|
|
os.write(fd, current_chunk)
|
|
|
|
finally:
|
|
|
|
locks.unlock(fd)
|
|
|
|
os.close(fd)
|
2008-08-12 00:51:18 +08:00
|
|
|
finally:
|
|
|
|
old_file.close()
|
2008-08-24 01:56:02 +08:00
|
|
|
copystat(old_file_name, new_file_name)
|
2008-07-01 23:10:51 +08:00
|
|
|
|
2008-08-24 01:56:02 +08:00
|
|
|
try:
|
|
|
|
os.remove(old_file_name)
|
|
|
|
except OSError, e:
|
2009-04-05 12:41:39 +08:00
|
|
|
# Certain operating systems (Cygwin and Windows)
|
|
|
|
# fail when deleting opened files, ignore it. (For the
|
|
|
|
# systems where this happens, temporary files will be auto-deleted
|
|
|
|
# on close anyway.)
|
|
|
|
if getattr(e, 'winerror', 0) != 32 and getattr(e, 'errno', 0) != 13:
|
2008-08-24 01:56:02 +08:00
|
|
|
raise
|