我对文件非常陌生,目前正在编写可以传递file.pom路径并检查.jar文件是否在同一路径中的方法。
def get_file_type(self, file_path):
return pathlib.Path(file_path).suffix
def check_if_file_exists(self, pom_file_path, extension):
pom_file_extract_file = str(pom_file_path).rpartition("/")
pom_file_extract_filename = str(pom_file_extract_file [-1]).rpartition("-")
if pom_file_extract_filename ... # stuck
....
for file in files:
f = os.path.join(zip_path, file)
f_fixed = "." + f.replace("\\", "/")
if self.get_file_type(f_fixed) == ".pom":
pom_paths = (root + "/" + file).replace("\\", "/")
print(pom_paths)
# if self.check_if_file_exists(pom_paths, ".jar") == True:
# Do stuff...
我应该传递pom的目录吗?
答案 0 :(得分:3)
pathlib
为此提供了一些方便的功能:
from pathlib import Path
p = Path('./file.pom')
p.with_suffix('.jar').exists()
您的功能将是:
def check_if_file_exists(self, pom_file_path, extension):
return pom_file_path.with_suffix(extension).exists()
答案 1 :(得分:0)
在pathlib中找到一种is_file()
方法,使用该方法可以解决我的问题:
def check_if_file_exists(self, pom_file_path, extension):
pom_file_path_one = str(pom_file_path).rpartition("/")
pom_file_path_two = str(pom_file_path_one[-1]).rpartition(".")
extension_file = pathlib.Path(pom_file_path_one[0] + "/" + pom_file_path_two[0] + extension)
if extension_file.is_file():
return True
else:
return False
编辑
不过,我使用这种方法来查找-javadoc.jar
个文件。