简体   繁体   中英

How to get a basename of .tar.gz file in python?

I would like to get the basename of a tar.gz file in python.

So from "foo/bar/alice.tar.gz" i want alice

What I have so far is:

url = "foo/bar/alice.tar.gz"

Path(Path(url).stem).stem

print(url)

~ alice

is there a smoother way to do so? What if my url is something like "foo/bar/alice.tar.gz.tar.gz.tar.gz" ?

Thanks in advance.

i think that will do the job:

>>> import os
>>> base=os.path.basename("foo/bar/alice.tar.gz")
>>> base
'alice.tar.gz'
>>> name = base.split('.')
'['alice', 'tar', 'gz']'
>>> name = base.split('.')[0]
'alice'

You can use str.partition() :

result = Path(url).stem.partition('.')[0]

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM