Message204807
shutil.move sometimes fail when the underlining filesystem has limitations.
Here is a part of a stacktrace I'm getting :
File "/usr/local/lib/python3.3/shutil.py", line 534, in move
copy2(src, real_dst)
File "/usr/local/lib/python3.3/shutil.py", line 244, in copy2
copystat(src, dst, follow_symlinks=follow_symlinks)
File "/usr/local/lib/python3.3/shutil.py", line 192, in copystat
lookup("chmod")(dst, mode, follow_symlinks=follow)
OSError: [Errno 38]
This behaviour is expected because shutil.move uses shutil.copy2 under the hood to copy file data and metadata.
However there is no way to tell shutil.move to use shutil.copy and to ignore metadata.
Maybe a new copy_metadata parameter (defaulting to True) or copy_function (like in shutil.copytree) would be an elegant solution? |
|
Date |
User |
Action |
Args |
2013-11-30 13:05:40 | desbma | set | recipients:
+ desbma |
2013-11-30 13:05:40 | desbma | set | messageid: <1385816740.15.0.284400453847.issue19840@psf.upfronthosting.co.za> |
2013-11-30 13:05:40 | desbma | link | issue19840 messages |
2013-11-30 13:05:39 | desbma | create | |
|