pythonos模块使用方法_python中的os模块使用方法

#-*-coding:utf-8

'''

os.getcwd():得到当前的目录

os.listdir('g:\python2') 获得g盘python2目录下的所有内容

os.system():运行shell命令,os.system('cmd'):起动dos

os.remove('g:\file\file.txt'):删除一个文件,不能删除一个目录

os.sep 可以取代操作系统特定的路径分割符。

os.mkdir(os.path.normpath('g:\file'):创建一个目录

#os.path模块

os.path.split('g:\file\file.txt'):返回一个路径的目录名和文件名(以元组的形式,因此可以遍历)

os.path.splitext('file.py'):分离文件名和扩展名,返回的是('file','.py')以元组的方式返回

os.path.exists(''):用来检验给出的路径是否真实存在,若存在返回true

os.path.getsize('g:\file\file.txt'):获得文件的大小,如果是目录则返回0

os.path.normpath(name):规范路径的字符串形式,用与存储文件

os.path.basename(name):返回的是文件名,如os.path.basename('g:\file\file.py'):return file.py

os.path.dirname(path):返回的是文件的路径 :如os.path.dirname('g:\file\file.txt') return g:\file

'''

import os

#os.system('cmd')

print os.getcwd() #获得当前的路径

print os.name #获得当前操作系统

print os.listdir('g:\python2')

print os.listdir('g://python2_workspace')

os.path.isfile()和os.path.isdir()函数分别检验给出的路径是一个文件还是目录。

print os.system('dir')

os.remove('g:\file\file.txt')

print os.sep

p=os.path.split('g:\file\file.txt')

for i in p:

print i

print os.path.isfile(os.getcwd())

print os.path.isdir(os.getcwd())

print os.path.isfile('file.py')

print os.path.exists('g:\python2\file')

print os.path.abspath('file.txt')

print os.path.normpath('g:\file')

print os.path.getsize('g:\file')

print os.path.splitext('a.py')

print os.path.normpath('g:/file.jpg')

path=os.path.join('g:/file','file.txt')

print os.path.normpath(path)

print os.path.basename('g:\file\file.txt')

filename='g:\file\file'

path=os.path.normpath(filename)

print path

os.mkdir(path)

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值