This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author desbma
Recipients desbma
Date 2013-11-30.13:05:39
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1385816740.15.0.284400453847.issue19840@psf.upfronthosting.co.za>
In-reply-to
Content
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?
History
Date User Action Args
2013-11-30 13:05:40desbmasetrecipients: + desbma
2013-11-30 13:05:40desbmasetmessageid: <1385816740.15.0.284400453847.issue19840@psf.upfronthosting.co.za>
2013-11-30 13:05:40desbmalinkissue19840 messages
2013-11-30 13:05:39desbmacreate