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 serhiy.storchaka
Recipients serhiy.storchaka
Date 2013-12-01.19:01:14
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1385924474.74.0.566817188038.issue19856@psf.upfronthosting.co.za>
In-reply-to
Content
Perhaps following code fails on Windows (while successes on Linux): 

import os, shutil
os.makedirs('foo')
os.makedirs('bar/boo')
shutil.move('foo/', 'bar/')

However shutil.move('foo', 'bar/') and shutil.move('foo\\', 'bar/') should work.
History
Date User Action Args
2013-12-01 19:01:14serhiy.storchakasetrecipients: + serhiy.storchaka
2013-12-01 19:01:14serhiy.storchakasetmessageid: <1385924474.74.0.566817188038.issue19856@psf.upfronthosting.co.za>
2013-12-01 19:01:14serhiy.storchakalinkissue19856 messages
2013-12-01 19:01:14serhiy.storchakacreate