2

我在下面发布了一个示例和所需的结果。我看到了许多消除文件路径部分的方法,但反之亦然

例子 。

sample = "/tmp/test/helloworld.cpp"
sample = truncate_file_name(sample)
Print sample

期望的结果

/tmp/test 
4

2 回答 2

7

使用这些os.path函数来做这样的事情:

>>> import os
>>> os.path.split("/tmp/test/helloworld.cpp")
('/tmp/test', 'helloworld.cpp')

另请参见os.path.splitext()os.path.splitdrive()等。换一种方式,用它os.path.join()构建路径——它总是为你的操作系统做正确的事情。

于 2012-04-11T00:34:01.593 回答
4

os.path提供dirname功能

>>> from os.path import dirname
>>> dirname("/tmp/test/helloworld.cpp")
'/tmp/test'
于 2012-04-11T00:37:13.463 回答