使用 How can os.path.abspath 时出错

Error while using How can os.path.abspath

如何使用 os.path.abspath 直接访问本地目录中的某些文件

例如

os.path.abspath(U:\Folder1\Folder2\takeThisFile.map)

添加引号: os.path.abspath('U:\Folder1\Folder2\takeThisFile.map')

您需要将字符串传递给 os.path.abspath 方法。此外,当您在字符串中使用反斜杠时,您需要将其转义或使用 r 标志将其作为原始字符串传递,如下所示:

os.path.abspath(r'U:\Folder1\Folder2\takeThisFile.map')

os.path.abspath('U:\Folder1\Folder2\takeThisFile.map')