Pythonでファイルパスの一部(ディレクトリ)を抽出する


163

特定のパスの親ディレクトリの名前を抽出する必要があります。これは次のようになります。

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

上記のリンクは、私が間違ったことを修正する方法を理解するのに役立ちました。ありがとうございました。
タリア

回答:


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

パスの一部を抽出しますが、パスから実際のディレクトリ名を抽出する方法がわかりません。
タリア

43

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 2017年

これは古いバージョンのPythonにもバックポートされています:pathlib2
フェニックス

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してそれを使用しようとすると、この関数がありません。

それ以外の場合、仕事を終わらせるための1つのやや醜い方法は、使用することです。

>>> 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の使用を示しましたが、ディレクトリ名だけでなくパスも表示されます。
タリア

1
私はあなたが何を求めているのかまだはっきりしていません。次に、\\の次に高いインスタンスの左側にあるすべてのものを取り除いてみませんか?パスが必要なふりをして、\\で分割するときにその最後のエントリを保持します。これは機能するはずです。
e12年

私はパスを分割して必要な部分を取得することになりましたが、以前はうまくいきませんでしたが、これらすべての答えを読んだ後、自分が間違ったことを見つけました。
タリア

回答を読んで問題が解決した場合は、少なくともそれらに賛成票を投じ、場合によってはそのうちの1つを受け入れることを検討してください。エラーを見つけてよかったです。
e12年

このやや醜いやり方が好きです。単純な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のパラメーターとして指定する必要があります。docsを参照してください。文字列分割のようには機能しません。


これは、WindowsのUNCタイプのパス名では機能しません。os.pathに関するPythonのドキュメントに記載されているとおりです。
2012
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.