gpt4 book ai didi

python - 比较不同文件夹中的两个文件名

转载 作者:太空宇宙 更新时间:2023-11-04 08:05:34 25 4
gpt4 key购买 nike

我在不同的位置有两个文件:/tmp/helpers_image.tif/tmp/outputs/helpers_image.qml。我想在扩展名之前比较他们的名字。

如何比较这两个文件夹中的文件?

如果这些文件在同一个文件夹中,我可以使用:

t1 = 'helpers_image.qml'
t1_list= t1.split('.')
t1_list[0] == t2_list[0]

...假设另一个列表将被称为 t2

最佳答案

您应该使用 os.path.basename 函数来获取文件的名称,无论它们位于哪个文件夹中。给你:

import os

filename1 = os.path.basename('/tmp/helpers_image.tif') # returns 'helpers_image.tif'
filename2 = os.path.basename('/tmp/outputs/helpers_image.qml') # return 'helpers_image.qml'

# Thanks to Cyrbil for noticing a bug here
name1 = filename1.rsplit('.', 1)[0] # returns 'helpers_image'
name2 = filename2.rsplit('.', 1)[0] # return 'helpers_image'

if name1 == name2: # This is True for this exact case
# your logic here

另一种方式是suggested by Dunes :

name1 = os.path.basename(os.path.splitext('/tmp/helpers_image.tif')[0])
name2 = os.path.basename(os.path.splitext('/tmp/outputs/helpers_image.qml')[0])

关于python - 比较不同文件夹中的两个文件名,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31855664/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com