码迷,mamicode.com
首页 > 编程语言 > 详细

Python 将两个绝对路径拼接

时间:2018-11-24 23:59:20      阅读:527      评论:0      收藏:0      [点我收藏+]

标签:ftp   param   win   setup   turn   color   user   port   linu   

import os


def two_abs_join(abs1, abs2):
    """
    将 绝对路径将两个绝对路径拼接,
    就是将第二个的开路径(windows 的  C, D,E ... Linux 的 /root 最前面的 / 删除掉)
    :param abs1:  为主的路径
    :param abs2:  被拼接的路径
    :return: 拼接后的数值
    """
    # 1. 格式化路径(将路径中的 \\ 改为 \)
    abs2 = os.fspath(abs2)

    # 2. 将路径文件拆分
    abs2 = os.path.splitdrive(abs2)[1]
    # 3. 去掉开头的 斜杠
    abs2 = abs2.strip(\\/) or abs2
    return os.fspath(os.path.join(abs1, abs2))


user_home = rE:\ftp_server\home\zsy
get_file_path = r"C:/a/ChromeSetup.exe"

t = two_abs_join(user_home, get_file_path)
print(t)


user_home = r/user/path/zsy/
get_file_path = r"/root/123.py"
t1 = two_abs_join(user_home, get_file_path)

print(t1)

 

Python 将两个绝对路径拼接

标签:ftp   param   win   setup   turn   color   user   port   linu   

原文地址:https://www.cnblogs.com/dream4567/p/10013785.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!