微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

在 Python 中提取文件路径一个目录的一部分

如何解决在 Python 中提取文件路径一个目录的一部分

import os
## first file in current dir (with full path)
file = os.path.join(os.getcwd(), os.listdir(os.getcwd())[0])
file
os.path.dirname(file) ## directory of file
os.path.dirname(os.path.dirname(file)) ## directory of directory of file
...

您可以根据需要继续执行此操作多次…

os.path,您可以使用 os.path.split 或 os.path.basename:

dir = os.path.dirname(os.path.dirname(file)) ## dir of dir of file
## once you're at the directory level you want, with the desired directory as the final path node:
dirname1 = os.path.basename(dir) 
dirname2 = os.path.split(dir)[1] ## if you look at the documentation, this is exactly what os.path.basename does.

解决方法

我需要提取某个路径的父目录的名称。这是它的样子:

C:\stuff\directory_i_need\subdir\file.jpg

我想提取directory_i_need.

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。