关于ubuntu:Python:os.path.exists失败了“?/ foo”

Python: os.path.exists failing on “~/foo”

本问题已经有最佳答案,请猛点这里访问。

我正在尝试通过运行来检查目录是否存在

1
2
3
self.path = '~/foo'
    if not os.path.exists(self.path):
        os.makedirs(self.path)

在Ubuntu虚拟机上。虽然此目录不存在,但它不会生成目录。实际上,在makedirs命令的正上方使用print语句。知道会是什么吗?


你可能想先在这条路上