在Python 中存取預設文件應用程式:Windows 和Mac OS
通常,需要使用其關聯的預設應用程式來開啟文件Python,類似於雙擊檔案總管或Finder 中的文件圖示。本文探討了在 Windows 和 macOS 環境中實現此任務的最佳方法。
建議的方法涉及使用 Python 的 subprocess 模組,避免使用 os.system() 以消除與 shell 轉義相關的問題。以下程式碼示範如何執行此任務:
import subprocess, os, platform filepath = "path/to/document.txt" # Replace with actual document path 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))
在此程式碼中,subprocess.call() 使用雙括號,函數需要一個序列作為其第一個參數。該方法在這裡使用元組。在具有 Gnome 的 Linux 系統上,也可以使用 gnome-open;然而,xdg-open 是 Free Desktop Foundation 標準,並且在 Linux 桌面環境中相容。
以上是如何在 Windows 和 macOS 上使用 Python 開啟預設文件應用程式?的詳細內容。更多資訊請關注PHP中文網其他相關文章!