Jython 2.2.1,如何移动文件? Shutils.move 不存在!
'''use Jython'''
import shutil
print dir(shutil)
没有,shutil.move,如何用 Jython 移动文件? 当我们这样做时,如何使用 Jython 删除文件?
'''use Jython'''
import shutil
print dir(shutil)
There is no, shutil.move, how does one move a file with Jython?
and while we at it, how does one delete a file with Jython?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
os.rename()
用于移动,os.unlink()
用于删除 - 就像 Python pre-shutil 一样。os.rename()
to move, andos.unlink()
to delete -- just like Python pre-shutil
.如果您需要跨文件系统移动的支持,请考虑将 CPython 的
shutil.py
复制到您的项目中。 Python 许可证 足够灵活,足以允许这样做(即使是商业用途)项目),只要保留许可和归属信息。If you need support for moving across filesystems, consider just copying CPython's
shutil.py
into your project. The Python License is flexible enough to allow this (even for commercial projects), as long as licensing and attribution information are retained.