获取项目下文件的路径 

import os


def getPath(fileName):
    """
    获取 文件的路径
    :param fileName: 文件名称(带后缀)
    :return: file_path 文件路径
    """
    # 获取当前文件所在目录
    current_dir = os.path.dirname(os.path.abspath(__file__))
    # 获取指定目录下所有文件的路径
    for root, dirs, files in os.walk(current_dir):
        for file in files:
            if file == fileName:
                # 拼接文件路径
                file_path = os.path.join(root, file)
                # 获取文件的绝对路径
                absolute_path = os.path.abspath(file_path)
                # 打印文件路径
                file_path=absolute_path.replace('\\', '\\\\')
                print(file_path)
                return file_path

getPath('chromedriver.exe')