轉義os.system() 呼叫
轉義os.system() 呼叫中的檔案名稱和參數,有效處理不同格式中的特殊字元作業系統和shell,建議使用函式庫函數。
shlex.quote() 和Pipes.quote()
Python 3 使用者可以利用shlex.quote( ),而同時使用Python 2 和Python 3 的人可以使用Pipes.quote()。這些函數作為轉義字串的高效且強大的選項,使您能夠輕鬆地將它們作為參數傳遞給命令。
Python 3 使用shlex.quote():
<code class="python">import shlex escaped_filename = shlex.quote(filename) os.system("cat %s" % escaped_filename)</code>
對Python 2 和Python 3 使用Pipes.quote():對Python 2 和Python 3 使用Pipes.. >
<code class="python">import pipes escaped_filename = pipes.quote(filename) os.system("cat %s" % escaped_filename)</code>
簡單性和安全性注意事項:
雖然使用引號仍然是可行的解決方案,但必須注意潛在的安全問題。使用 os.system() 時,確保輸入字串的來源可靠且不易受到惡意利用至關重要。
以上是如何在 Python 中安全地轉義 os.system() 呼叫中的檔案名稱和參數?的詳細內容。更多資訊請關注PHP中文網其他相關文章!