使用Python / Jenkins保存excel文件的问题

时间:2015-11-02 18:31:28

标签: python jenkins save

当我从Jenkins启动脚本时,我无法保存文件/在Python中移动文件。

我有一个小功能,用于将输出文件从工作目录移动到另一个目录。当我的脚本在本地启动时,一切都很好。当我尝试让它由Jenkins运行时,我收到以下错误:

Traceback (most recent call last):
File "...\shutil.py", line 522, in move
os.rename(src, real_dst)
FileNotFoundError: [WinError 3] The system cannot find the path specified:   

'MyNicelyOutputtedFile' -> 'C:\\TheDestinationFolder'

During handling of the above exception, another exception occurred:
Traceback (most recent call last):
FileNotFoundError: [Errno 2] No such file or directory:   'C:\\TheDestinationFolder'

我知道有些人遇到过同样的问题,但我不知道他们是如何解决的。当我尝试使用Pandas将我的文件直接保存在目标文件夹中时,我也遇到了问题。任何提示?非常感谢。

1 个答案:

答案 0 :(得分:0)

在这个问题上花了相当长的一段时间后,一位同事给了我一个很好的提示:在工作开始时重置驱动器映射。这样做很好。