FileNotFoundError:[WinError 2]系统找不到指定的文件/ tempfile

时间:2018-07-19 06:21:54

标签: python temporary-files

我需要获取16位摄影测量目标,因此我尝试使用此婚礼站点上的代码:https://mpetroff.net/2018/05/photogrammetry-targets/,但是当尝试使用tempfile创建临时目录时却出现了错误,我似乎没有了解原因。

with tempfile.TemporaryDirectory() as tmp_dir:
# Create sheets of targets in temporary directory
pdfs = []
for n in range(math.ceil(len(CODES) / ROWS / COLUMNS)):
    pdf_filename = os.path.join(tmp_dir, str(n) + '.pdf')
    create_sheet(n, pdf_filename)
    pdfs.append(pdf_filename)
# Combine sheets into a single PDF
subprocess.run(['pdftk'] + pdfs + ['cat', 'output', FILENAME])

0 个答案:

没有答案