在Python中提取一部分文件路径(目录)


162

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

c:\stuff\directory_i_need\subdir\file

我正在使用使用文件directory_i_need名(而不是路径)的东西来修改“文件”的内容。我创建了一个函数,该函数会给我所有文件的列表,然后...

for path in file_list:
   #directory_name = os.path.dirname(path)   # this is not what I need, that's why it is commented
   directories, files = path.split('\\')

   line_replace_add_directory = line_replace + directories  
   # this is what I want to add in the text, with the directory name at the end 
   # of the line.

我怎样才能做到这一点?


1
您可能需要检查以下答案:stackoverflow.com/a/4580931/311220
Acorn 2012年

上面的链接帮助我了解了如何解决我做错的事情。谢谢。
塔利亚2012年

Answers:


236
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.

它确实提取了路径的一部分-但我不知道如何从路径中提取实际的目录名称。
塔利亚2012年

42

在Python 3.4中,您可以使用pathlib模块

>>> from pathlib import Path
>>> p = Path('C:\Program Files\Internet Explorer\iexplore.exe')
>>> p.name
'iexplore.exe'
>>> p.suffix
'.exe'
>>> p.root
'\\'
>>> p.parts
('C:\\', 'Program Files', 'Internet Explorer', 'iexplore.exe')
>>> p.relative_to('C:\Program Files')
WindowsPath('Internet Explorer/iexplore.exe')
>>> p.exists()
True

API的很好演示
Nadim Farhat

这也已反向
phoenix

11

parent如果您使用,您所需要的只是一部分pathlib

from pathlib import Path
p = Path(r'C:\Program Files\Internet Explorer\iexplore.exe')
print(p.parent) 

将输出:

C:\Program Files\Internet Explorer    

如果您需要所有部分(已经包含在其他答案中),请使用parts

p = Path(r'C:\Program Files\Internet Explorer\iexplore.exe')
print(p.parts) 

然后,您将获得一个列表:

('C:\\', 'Program Files', 'Internet Explorer', 'iexplore.exe')

节省时间。


5

首先,查看中是否有splitunc()可用功能os.path。返回的第一项应该是您想要的...但是我在Linux上,并且在导入os并尝试使用它时没有此功能。

否则,完成工作的一种半丑陋的方法是使用:

>>> pathname = "\\C:\\mystuff\\project\\file.py"
>>> pathname
'\\C:\\mystuff\\project\\file.py'
>>> print pathname
\C:\mystuff\project\file.py
>>> "\\".join(pathname.split('\\')[:-2])
'\\C:\\mystuff'
>>> "\\".join(pathname.split('\\')[:-1])
'\\C:\\mystuff\\project'

该图显示了检索文件正上方的目录以及该目录正上方的目录。


我编辑了我的条目,以显示rsplit的用法,该用法可以完成您的建议-但仍然为我提供了路径,而不仅仅是目录名。
塔利亚2012年

1
我仍然不清楚你在问什么。为什么不将所有内容都剥离到\\的下一个更高实例的左侧呢?假装您想要路径,然后在\\上拆分时保留该路径的最后一个条目。这应该工作,不是吗?
2012年

我最终分道扬taking,拿走了我想要的片段,之前没有用,但是在阅读了所有这些答案之后,我发现我做错了什么。
塔利亚2012年

如果阅读答案确实对您有所帮助,请考虑至少投票,并可能接受其中之一。我很高兴您发现了错误。
2012年

我喜欢这种半丑陋的方式。我通过简单的os.sep更改了“ \\”,它可以完美地检索路径的一部分。
TazgerO 2012年

1

这是我提取目录的一部分的工作:

for path in file_list:
  directories = path.rsplit('\\')
  directories.reverse()
  line_replace_add_directory = line_replace+directories[2]

谢谢您的帮助。


0
import os

directory = os.path.abspath('\\') # root directory
print(directory) # e.g. 'C:\'

directory = os.path.abspath('.') # current directory
print(directory) # e.g. 'C:\Users\User\Desktop'

parent_directory, directory_name = os.path.split(directory)
print(directory_name) # e.g. 'Desktop'
parent_parent_directory, parent_directory_name = os.path.split(parent_directory)
print(parent_directory_name) # e.g. 'User'

这也应该可以解决问题。


-1

您必须将整个路径作为os.path.split的参数。请参阅文档。它不像字符串拆分那样工作。


这不适用于Windows上的UNC类型路径名,因为os.path填充状态的Python文档。
2012年
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.