當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python os.chroot()用法及代碼示例


Python中的os.chroot()方法用於將當前進程的根目錄更改為path。

用法: os.chroot(path)

參數:
path: 設置為當前進程根目錄的路徑。


返回值:不返回任何值。

代碼1:

# Python program to explain os.chroot() ethod 
  
import os, sys 
  
# Set current root path to /Geeks/gfg 
os.chroot("/Geeks/gfg") 
print ("root path successfully changed.")

輸出:

root path successfully changed.


代碼2:

# Function to Change root directory of the process. 
def change_root_directory(path): 
  
    try: 
        os.chdir(path) 
        os.chroot(path) 
    except Exception as exc: 
        error = DaemonOSEnvironmentError("Unable to change root directory ({exc})".format(exc = exc)) 
        raise error  
  
# main function 
change_root_directory("/Geeks/gfg")


相關用法


注:本文由純淨天空篩選整理自Shivam_k大神的英文原創作品 Python | os.chroot() method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。