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")
相關用法
- Python os.dup()用法及代碼示例
- Python next()用法及代碼示例
- Python set()用法及代碼示例
- Python hasattr()用法及代碼示例
- Python PIL putdata()用法及代碼示例
- Python PIL getcolors()用法及代碼示例
- Python PIL tobytes()用法及代碼示例
- Python PIL getpalette()用法及代碼示例
- Python os.get_blocking()用法及代碼示例
- Python Tensorflow cos()用法及代碼示例
- Python sympy.crt()用法及代碼示例
- Python sympy.nT()用法及代碼示例
- Python PIL putalpha()用法及代碼示例
注:本文由純淨天空篩選整理自Shivam_k大神的英文原創作品 Python | os.chroot() method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。