Foxit PDF Editor Pro 응용 프로그램(와인 응용 프로그램)을 사용하여 PDF 파일을 여는 Python 함수를 만들고 싶습니다. 내 기능은 다음과 같습니다.
def open_with_foxit(output_path):
command = ["wine",
"/home/lediem/Wine/FoxitPDFEditor/drive_c/Program Files (x86)/Foxit Software/Foxit PDF Editor/FoxitPDFEditor.exe",
output_path]
subprocess.Popen(command)
실행 후:
open_with_foxit('/home/lediem/Dropbox/LATEX ALL/FILE HS ONLINE/tài liệu.pdf')
오류 메시지가 나타납니다.
wine: Read access denied for device L"\??\Z:\", FS volume label and serial are not available.
wine: Read access denied for device L"\??\Z:\", FS volume label and serial are not available.
wine: Read access denied for device L"\??\Z:\", FS volume label and serial are not available.
wine: Read access denied for device L"\??\Z:\", FS volume label and serial are not available.
Could not find Wine Gecko. HTML rendering will be disabled.
0180:err:mshtml:create_document_object Failed to init Gecko, returning CLASS_E_CLASSNOTAVAILABLE
내 링크가 정확하더라도. 매우 감사합니다!
답변1
내가 찾은 해결책은 Z
드라이브를 winecfg
로 설정 /home
한 다음 해당 경로를 z:/lediem/Dropbox/LATEX ALL/FILE HS ONLINE/documents.pdf
.
그러면 PDF 파일을 정상적으로 열 수 있습니다.