当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。