如何在 Python ‘os’ 的函数中引用当前目录?模块?

发布于 2024-10-12 21:27:38 字数 69 浏览 7 评论 0原文

我想使用函数 os.listdir(path) 来从运行脚本的目录中获取文件列表,但是如何在“path”参数中表示当前目录?

I want to use the function os.listdir(path) to get a list of files from the directory I'm running the script in, but how do I say the current directory in the "path" argument?

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

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

发布评论

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

评论(3

ぃ弥猫深巷。 2024-10-19 21:27:38

使用 os.curdir,然后如果您想要完整路径,可以使用 os.path 中的其他函数:

import os
print os.path.abspath(os.curdir)

Use os.curdir, and then if you want a full path you can use other functions from os.path:

import os
print os.path.abspath(os.curdir)
夜司空 2024-10-19 21:27:38

您还可以使用getcwd()函数

os.getcwd()
>>> 'C:\\Python25'

You can also use the getcwd() function

os.getcwd()
>>> 'C:\\Python25'
趴在窗边数星星i 2024-10-19 21:27:38

您通常会使用 os.listdir('.') 来实现此目的。如果您需要标准模块,则可以使用变量 os.curdir 。

You'd typically use os.listdir('.') for this purpose. If you need a standard module, the variable os.curdir is available.

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