我需要获取桌面上目录的绝对路径 我有:
home = os.environ["HOMEPATH"]
desktop = os.path.join(home,'Desktop')
name = 'Test_L1_R1
fileName = os.path.abspath(os.path.join(desktop,r'\python35\connect4\pons\data',name))
结果应为
C:\Users\Alan\Desktop\python35\connect4\pons\data\Test_L1_R1
但实际结果是
C:\python35\connect4\pons\data\Test_L1_R1
我相信操作系统检测到我有一个目录
C:\python35
因为我将路径更改为
fileName = os.path.abspath(os.path.join(desktop,r'\connect4\pons\data',name))
即删除python35部分我得到了正确的答案
如何阻止它呢?