Pyhton 路径间相互转换

1:当前文件的路径

os.getwd()

2:上一级目录的路径

os.path.dirname(os.getwd())

3:绝对路径=》相对路径

os.path.relpath('C:\Users\Administrator\Desktop')

4:相对路径转绝对路径

path = "..\MyProj\MyFile.txt"

os.path.abspath(path)
在Linux下,如果要使用Python读取中文路径,可以使用以下方法: 1. 首先,确保你的Python代码文件以及要读取的文件都是以UTF-8编码保存的,这样可以避免中文路径出现乱码的问题。 2. 使用os模块的`os.path`方法来处理路径。比如,你可以使用`os.path.abspath()`方法来获取当前执行命令的绝对路径,然后再使用`os.path.join()`方法来连接路径。 3. 如果你的路径是Linux风格的路径(比如`/home/user/中文路径/文件.txt`),则无需进行路径转换,直接使用即可。 4. 如果你的路径是Windows风格的路径(比如`C:\中文路径\文件.txt`),则可以使用以下代码将Windows路径转换为Linux路径: ```python def windows_to_linux(windowsPath): windowsPathTemp = windowsPath.split(':')\[1\] # /Code/Shell/test.txt diskDrive = windowsPath.split(':')\[0\] # e diskDrive = '/' + diskDrive # /e linuxPath = diskDrive + windowsPathTemp # /e/Code/Shell/test.txt return linuxPath windowsPath = 'C:/中文路径/文件.txt' linuxPath = windows_to_linux(windowsPath) print(linuxPath) # 输出:/C/中文路径/文件.txt ``` 这样,你就可以在Linux下使用Python读取中文路径了。 #### 引用[.reference_title] - *1* *2* [linux下python的文件路径操作](https://blog.csdn.net/Jerr__y/article/details/52675371)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^insertT0,239^v3^insert_chatgpt"}} ] [.reference_item] - *3* [【Python】使用python实现Linux路径与Windows路径相互转换](https://blog.csdn.net/aidijava/article/details/125827331)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^insertT0,239^v3^insert_chatgpt"}} ] [.reference_item] [ .reference_list ]
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值