Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
557 views
in Technique[技术] by (71.8m points)

file - Split filenames with python

I have files that I want only 'foo' and 'bar' left from split.

dn = "C:\X\Data"

files

f=  C:\X\Data\foo.txt
f=  C:\X\Dats\bar.txt

I have tried f.split(".",1)[0]

I thought since dn and .txt are pre-defined I could subtract, nope. Split does not work for me.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

How about using the proper path handling methods from os.path?

>>> f = 'C:\X\Data\foo.txt'
>>> import os
>>> os.path.basename(f)
'foo.txt'
>>> os.path.dirname(f)
'C:\X\Data'
>>> os.path.splitext(f)
('C:\X\Data\foo', '.txt')
>>> os.path.splitext(os.path.basename(f))
('foo', '.txt')

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...