在Python中重定向系统调用输出

发布于 2024-11-08 17:13:56 字数 85 浏览 0 评论 0原文

我希望在 python 中执行 os.system('ls') 。该语句的返回值是一个错误代码整数..但我想以字符串形式获取当前目录的内容。如何做到这一点?

I wish to execute os.system('ls') in python. the return value of this statement is an error code integer..but I want to get the contents of the present directory as a string. How to accomplish this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

苯莒 2024-11-15 17:13:56

os.listdir(".")


一般来说,如果你想调用函数并获取参数,你应该使用 subprocess.Popen()。但是许多基本目录内容都在 os 模块中,因此您不必这样做。

os.listdir(".")


In general, if you want to call a function and get the arguments, you should use subprocess.Popen(). But a lot of the basic directory stuff is in the os module so you don't have to do that.

雨落星ぅ辰 2024-11-15 17:13:56

Python 作为内置功能,例如 os.listdir() 或 os.walk() 用于列出内容
在文件系统上。自己运行“ls”是非常糟糕的风格。一般来说,查看子流程模块的文档,为您提供与外部命令交互的所有灵活性。

Python as build-in functionality like os.listdir() or os.walk() for listing stuff
on the filesystem. Running 'ls' yourself is very bad-style. In general look at the documentation of the subprocess module giving you all flexibility for interacting with external commands.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文