gpt4 book ai didi

python - 从另一个位置运行时如何在 linux 上获取绝对路径

转载 作者:太空狗 更新时间:2023-10-29 11:26:46 25 4
gpt4 key购买 nike

我想运行一个 crontab,它将在每小时 0 分钟运行我的文件。我用一个命令设置了 (sudo) crontab,如下所示:

0 * * * * /usr/bin/python3 /usr/folder/test.py

crontab 正在运行,据我所知是正确的,但是当我的 python 文件从另一个位置运行时,它没有返回绝对路径。

我需要的是一种方法来保证从根目录访问此文本文件时的绝对路径,以便我的 crontab 可以运行该文件。

我试过同时使用 Path(filename).resolve()os.path.abspath(filename) 但它们都不起作用。

import os
print(os.path.abspath("checklist.txt"))
python3 usr/folder/test.py

当我在文件夹中运行文件“test.py”时,我得到了预期的输出

python3 test.py

/usr/folder/checklist.txt

然而,当我从根目录运行同一个文件并通过路径访问它时,我得到了不同的结果,使得在这种情况下无法使用 crontab

python3 usr/folder/test.py

/checklist.txt

最佳答案

如果 checklist.txt 与您的 test.py 脚本在同一个文件夹中,那么您可以使用 __file__ 变量来获取正确的道路。例如

# The directory that 'test.py' is stored
directory = os.path.dirname(os.path.abspath(__file__))
# The path to the 'checklist.txt'
checklist_path = os.path.join(directory, 'checklist.txt')

关于python - 从另一个位置运行时如何在 linux 上获取绝对路径,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56636765/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com