ワインアプリケーション(Foxit PDF Editor Pro)を使用してPDFファイルを実行するには?

ワインアプリケーション(Foxit PDF Editor Pro)を使用してPDFファイルを実行するには?

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ファイルを正常に開くことができます。

おすすめ記事