码迷,mamicode.com
首页 > 编程语言 > 详细

Python标准库os

时间:2014-10-28 21:28:25      阅读:166      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   os   ar   for   sp   strong   div   

如果你希望自己的程序能够与平台无关的话,这个模块至关重要

 

os.name #‘nt‘ for windows, ‘posix‘ for linux/unix

os.getcwd() #get current work directory,即Python脚本工作的目录路径

os.getenv() #get the environment variables

os.setenv() #set the ...

os.listdir(mdir) #list all files and directories name under mdir

os.remove(mfile) #delete mfile

os.system() #run shell command

os.linesep #行终止符, ‘\r\n‘ for windows, ‘\n‘ for linux, ‘\r‘ for mac

os.path.split(mpath) #return (directory,filename)

os.path.isfile(mstr)
os.path.isdir(mstr)
os.path.existe(mdir) # if the mdir exist

 

Python标准库os

标签:style   blog   color   os   ar   for   sp   strong   div   

原文地址:http://www.cnblogs.com/magnolia/p/4057893.html

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