Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我很难找到任何描述 Python 预期符号链接行为的文档。
我自己尝试过测试,但我得到了奇怪的结果——有时它似乎工作了一段时间然后停止工作。
无论如何,我有一种情况,MoinMoin 将它的数据文件和插件模块保存在同一个目录中,但我需要将数据文件保存在我的 git 存储库之外(我使用的是 Openshift PaaS)以便它持续存在。所以我想创建这个符号链接:
~/data/plugins/theme/ -> ~/repo/plugins/theme/
我应该期望这行得通吗?
应该可以正常工作 - 符号链接是在操作系统级别处理的,这意味着只要 python 不试图确定某个东西是否是符号链接,调用open它应该只打开它指向的文件。
open
有什么特别不起作用的吗?当它停止工作时你看到了什么?