Python脚本在通过任务计划程序运行时不创建文件

时间:2015-06-20 05:34:54

标签: python csv scheduled-tasks task

Link for python code running successfully through task scheduler

Image link for job detail on scheduler

当运行作业调度程序时,python脚本不在脚本目录中创建文件(csv文件中的Scraped data)。 TF-IDF工作正常,但我找不到文件。

1 个答案:

答案 0 :(得分:1)

这可能与您的环境有关。它运行的是什么用户?您可以尝试使用几行来查看它正在运行的认为的位置。

import os

# Print current working directory 
print "Current working dir : %s" % os.getcwd()

或更进一步,在处理开始之前实际更改为您想要的目录。

# First go to the "/var/www/html" directory
os.chdir("/var/www/html" )