如何在 Python ‘os’ 的函数中引用当前目录?模块?
我想使用函数 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
使用 os.curdir,然后如果您想要完整路径,可以使用 os.path 中的其他函数:
Use os.curdir, and then if you want a full path you can use other functions from os.path:
您还可以使用
getcwd()
函数You can also use the
getcwd()
function您通常会使用 os.listdir('.') 来实现此目的。如果您需要标准模块,则可以使用变量 os.curdir 。
You'd typically use
os.listdir('.')
for this purpose. If you need a standard module, the variableos.curdir
is available.