使用Python 在Windows 和Mac OS 中使用預設應用程式開啟檔案
在Python 中,經常需要使用預設應用程式開啟文件應用。這模仿了在檔案總管或 Finder 中雙擊檔案圖示的操作。為了實現這一點,Python 提供了一個強大的解決方案。
實作:
要使用預設應用程式開啟文件,Python 提供了子進程形式的強大工具模組。以下程式碼片段示範如何在Windows 和Mac OS 上使用預設應用程式開啟檔案:
import subprocess, os, platform # Determine the operating system if platform.system() == 'Darwin': # macOS subprocess.call(('open', filepath)) elif platform.system() == 'Windows': # Windows os.startfile(filepath) else: # linux variants subprocess.call(('xdg-open', filepath))
程式碼中:
附加說明:
以上是Python 如何在 Windows 和 macOS 上使用預設應用程式開啟檔案?的詳細內容。更多資訊請關注PHP中文網其他相關文章!