Python Fabric:如何检索目录的文件列表
我正在使用 python-fabric 库构建一个远程服务器管理工具,并正在寻找一种检索远程服务器上目录的文件列表的好方法。目前我正在使用 run("ls dir") 并手动分割返回字符串,这看起来很可怕并且非常依赖于体系结构。 Fabric.contrib.files 似乎不包含任何有用的东西。
非常感谢建议。
干杯, 右
I'm building a remote server admin tool using the python-fabric library and am looking for a good way of retrieving a filelist for a directory on the remote server. Currently I'm using run("ls dir") and am manually splitting the return string, which seems horrendous and very much architecture dependent. fabric.contrib.files doesn't seem to contain anything of use..
Suggestions much appreciated.
Cheers,
R
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这有什么问题吗?
检查 有关
run() 的文档
了解更多技巧。What's wrong with this?
Check the documentation on
run()
for more tricks.我认为最好的方法是编写一个 BASH(其他 shell 的行为类似)oneliner。检索目录中的文件列表。
所以返回绝对路径的完整解决方案:
I think the best way is to write a BASH (others shells behave similar) oneliner. To retrieve list of files in a directory.
So the complete solution that returns absolute paths: