码迷,mamicode.com
首页 > 其他好文 > 详细

os.getcwd()

时间:2019-12-31 11:00:24      阅读:156      评论:0      收藏:0      [点我收藏+]

标签:str   int   etc   style   get   目录   htm   www   imp   

概述
  用于返回当前工作目录。

语法
  os.getcwd()

参数
  无

返回值
  返回当前进程的工作目录

使用示例

import os, sys

os.chdir("/var/www/html" ) # 切换到 "/var/www/html" 目录
print (os.getcwd()) # 输出:/var/www/html

fd = os.open( "/tmp", os.O_RDONLY ) # 打开 "/tmp"
os.fchdir(fd) # 使用 os.fchdir() 方法修改目录
print (os.getcwd()) # 输出:/tmp

os.close( fd ) # 关闭文件

os.getcwd()

标签:str   int   etc   style   get   目录   htm   www   imp   

原文地址:https://www.cnblogs.com/shiliye/p/12122960.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!