使用 Python 从网络文件夹/共享读取/写入文件?
如何使用 python 将文件写入网络文件夹/共享/从网络文件夹/共享读取文件?该应用程序将在 Linux 下运行,网络文件夹/共享可以是 Linux/Windows 系统。
另外,在写入文件之前如何检查网络文件夹/共享是否有足够的空间?
我应该考虑哪些事情?
How to Write/Read a file to/from a network folder/share using python? The application will run under Linux and network folder/share can be a Linux/Windows System.
Also, how to check that network folder/share has enough space before writing a file?
What things should i consider?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 Samba 挂载共享,使用 df 或 os.statvfs 检查共享上的可用空间,并像任何其他文件夹一样对其进行读/写。
Mount the shares using Samba, check the free space on the share using
df
oros.statvfs
and read/write to it like any other folder.