开发者

how to get a part of file path?

开发者 https://www.devze.com 2023-02-19 00:44 出处:网络
for example I have string: test = \"/var/tm开发者_如何学运维p/test.log\" I want to get a path of this file.Use os.path.dirname():

for example I have string:

test = "/var/tm开发者_如何学运维p/test.log" 

I want to get a path of this file.


Use os.path.dirname():

>>> import os
>>> os.path.dirname('/var/tmp/test.log')
'/var/tmp'


 >>> import os
 >>> os.path.dirname("/var/tmp/test.log")
 '/var/tmp'


if you want to get absolute path, try this

C:>python Python 2.5.4 (r254:67916, Dec 23 2008, 15:10:54) [MSC v.1310 32 bit (Intel)] on win32 Type "help", "copyright", "credits" or "license" for more information.

>>> import os.path
>>> test = '.'
>>> os.path.dirname(os.path.abspath(test))
'C:\\'


Which part are you interested in? The os.path module has a lot of useful functions. If that fails, a .split("/") would do the trick.

0

精彩评论

暂无评论...
验证码 换一张
取 消