port os
file_path = ‘test.txt’
abs_path = os.path.abspath(file_path)
t(abs_path)
inistrator\Desktop\test.txt
2. 使用os.path.realpath()函数获取文件的完整路径
port os
file_path = ‘test.txt’
real_path = os.path.realpath(file_path)
t(real_path)
inistrator\Desktop\test.txt
ame()函数获取文件所在目录的完整路径ame()函数。
port os
file_path = ‘test.txt’ame(os.path.abspath(file_path))
t(dir_path)
inistrator\Desktop
ame编程中非常基础的操作,对于文件路径的处理非常有用。