如何使用 python 进行 tar 备份
我有目录 /home/user1 、 user2 。 我想循环遍历所有用户名主目录,然后制作 tar.gz 文件,然后将其存储在 /backups 目录中。
我是 python 新手,很困惑如何开始
I have directory /home/user1 , user2 .
I want to loop through all usernames home dir and then make the tar.gz file and then store it in /backups directory.
I am new to python so confused how to start
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这应该有效:
This should work:
python 将字符串直接写入 tarfile
和 http://docs.python.org/library/tarfile.html#tar -示例
python write string directly to tarfile
and http://docs.python.org/library/tarfile.html#tar-examples