แตกไฟล์ส่วนหนึ่งของ filepath (ไดเรกทอรี) ใน 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

ลิงก์ด้านบนช่วยให้ฉันเข้าใจวิธีแก้ไขสิ่งที่ฉันทำผิด ขอบคุณ.
Thalia

หรืออันนี้: stackoverflow.com/a/31273488/1048186
Josiah Yoder

คำตอบ:


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.

มันแยกส่วนของเส้นทาง - แต่ฉันไม่รู้วิธีแยกชื่อไดเรกทอรีจริงจากเส้นทาง
Thalia

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

สิ่งนี้ได้รับการย้อนกลับไปยัง Python เวอร์ชันเก่า: pathlib2
phoenix

11

ทั้งหมดที่คุณต้องเป็นส่วนหนึ่งถ้าคุณใช้parentpathlib

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 ซึ่งทำในสิ่งที่คุณแนะนำ - แต่ยังให้เส้นทางกับฉันไม่ใช่แค่ชื่อไดเรกทอรี
Thalia

1
ฉันยังไม่ชัดเจนในสิ่งที่คุณถาม ทำไมคุณไม่ตัดทุกอย่างออกจากอินสแตนซ์ถัดไปของ \\ ไปแล้วล่ะ แกล้งทำเป็นว่าคุณต้องการเส้นทางจากนั้นเพียงแค่เก็บรายการสุดท้ายของเมื่อคุณแยกมันใน \\ สิ่งนี้ควรใช้ใช่ไหม
ely

ในที่สุดฉันก็แยกทางและนำชิ้นส่วนที่ฉันต้องการมันไม่ได้ผลมาก่อน แต่หลังจากอ่านคำตอบทั้งหมดเหล่านี้ฉันพบว่าฉันทำอะไรผิด
Thalia

หากการอ่านคำตอบช่วยคุณพิจารณาอย่างน้อยก็โหวตพวกเขาและอาจยอมรับหนึ่งในนั้น ฉันดีใจที่คุณเห็นข้อผิดพลาด
ely

ฉันชอบวิธีการทำงานแบบกึ่งน่าเกลียดนี้ ฉันเปลี่ยน "\\" โดย os.sep แบบง่ายและทำงานได้อย่างสมบูรณ์เพื่อดึงข้อมูลเพียงเสี้ยวเส้นทาง
TazgerO

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 ดูเอกสาร มันไม่ทำงานเหมือนการแยกสตริง


สิ่งนี้จะไม่ทำงานกับชื่อพา ธ ประเภท UNC บน Windows เนื่องจาก Python docs สำหรับสถานะไฟล์ os.path
ely
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.