python os模块方法总结

在python中os是一个非常常用的模块,下面是对os中方法的总结(实验为Mac环境)

1 .  os.name  :输出字符串指示使用的平台,windows是'nt', linux/unix/mac是'posix'  

>>> os.name
'posix'
>>> 


2 . os.getcwd() :获取当前目录

>>> os.getcwd()
'/Users/tp'
>>> 


3 . os.system() :执行一条shell

>>> os.system("mkdir tt")
0
>>> 

4 . os.listdir( path ) :返回指定path下的所有文件名和目录名(可以看到刚才创建的tt文件)
>>> os.listdir(os.getcwd() )
['.AB64CF89', '.android', '.bash_history', '.bash_profile', '.bash_profile.pysave', '.CF89AA64', '.CFUserTextEncoding', '.config', '.DS_Store', '.local', '.matplotlib', '.mysql_history', '.rediscli_history', '.rnd', '.ssh', '.subversion', '.Trash', '.vim', '.viminfo', '.vimrc', 'Desktop', 'Documents', 'Downloads', 'dump.rdb', 'Library', 'Movies', 'Music', 'Pictures', 'Public', 'PycharmProjects', 'test', 'tt', 'workspace']
>>> 


5 . os.remove( file )  :删除文件

6 . os.removedirs( path ) :删除文件夹

>>> strPath = os.getcwd() +'/tt'
>>> print strPath
/Users/heshan/tt
>>> os.removedirs(strPath)
>>> 

7 . os.sep : 可取带操作系统特定的路径分割符

8 . os.linesep  :当前平台的行分割符

>>> os.sep
'/'
>>> os.linesep
'\n'
>>> 


9 . os.path.exists( path ) :检验目录path是否存在

10 . os.path.isdir( path ) :path是否是目录

10 . os.path.isfile( file ): file是否是文件

>>> os.path.isdir(os.getcwd())
True
>>> os.path.isfile(os.getcwd())
False
>>> os.path.exists(os.getcwd())
True
>>> 


11 . os.path.getsize( file ): 获取文件大小

12 . os.path.splitext( file ): 分离文件后缀名

13 . os.path.split( file ): 分离文件名和目录

14 . os.path.join( path ,file ): 连接目录和文件名
15 . os.path.dirname( file ): 返回文件目录

>>> os.path.getsize(os.getcwd())
1156
>>> os.path.splitext(os.getcwd())
('/Users/tp', '')
>>> os.path.split(os.getcwd())
('/Users', 'heshan')
>>> os.path.join(os.getcwd(),'test.in')
'/Users/heshan/test.in'
>>> os.path.dirname(os.getcwd())
'/Users'
>>> 

你可能感兴趣的:(开发,python,os)