batファイルからConvertToPDF_v0.0.pyファイルを実行したのですが下記のエラーが出てしまいました。
win32api、sys、osの各モジュールがインストールされていないのかと思いwin32paiをインストールしました
コードは下記の通りなのですが、何が原因なのかが分からず困っております。。。
<#!/usr/bin/env python
coding: utf-8
In[ ]:
import os
import sys
script_path = os.path.dirname(file)
sys.path.append(os.path.join(script_path, "Lib/site-packages"))
sys.path.append(os.path.join(script_path, "Lib/site-packages/win32"))
sys.path.append(os.path.join(script_path, "Lib/site-packages/win32/lib"))
os.environ["PATH"] = os.environ["PATH"] + ";" + os.path.join(script_path , "Lib/site-packages/pywin32_system32")
import win32com.client
excel = win32com.client.Dispatch("Excel.Application")
file = excel.Workbooks.Open('C:\Users\cc000\Desktop\Python\PythonBatchFile\example.xlsx')
file.WorkSheets(1).Select()
file.ActiveSheet.ExportAsFixedFormat(0, 'C:\Users\cc000\Desktop\Python\PythonBatchFile\example1.pdf')
file.Close()
ご教授頂ければ幸甚です
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/10/24 02:26
2020/10/24 11:10
2020/10/25 14:01