python(文件、with、os)

1.文件读取文件的三部曲:打开—>操作—>关闭

r(默认):
-只能读,不能写
-读取文件不存在,会报错
-FileNotFoundError: [Errno 2] No such file or directory: ‘/tmp/rrrrrr’

w:
-write only
-文件不存在,不报错,并创建新的文件
-文件存在,会清空文件内容并写入新的内容

a:
-write only
-写:不会清空原文件的内容,会在文件末尾追加
-写:文件不存在,不报错,并创建新的内容
r+:
-读写
-文件不存在,报错
-默认情况下,从文件指针所在位置开始写入
w+:
-rw
-文件不存,不报错
-会清空文件内容
a+:
-rw
-文件不存在,不报错
-不会清空文件内容,在末尾追加

# 打开文件
f = open('/tmp/passwd','w+')
#print(f)
# 读操作
# 告诉当前文件指针所在的位置
print(f.tell())
content = f.read()
# 写操作
# f.write('python')
print(content)
print(f.tell())
# f.write('python')

# print(f.read())
# # 关闭文件
# 判断文件对象拥有的权限
# print(f.readable())
# print(f.writable())

f.close()

2.非纯文本文件的读取

如果读取图片 音频 视频(非纯文本文件),
需要通过二进制的方式进行读取与写入
-读取纯文本文件
    r r+ w w+ a a+ ==rt rt+ wt wt+ at at+
-读取二进制文件
    rb rb+ wb wb+ ab ab+
"""
# 先读取二进制文件内容
f1 = open('1111.jpg',mode='rb')
content = f1.read()
f1.close()

f2 = open('hello.jpg',mode='wb')
# 写入要复制的文件读到的内容
f2.write(content)
f2.close()

3.文件的常用操作

# # f = open('/tmp/passwd','r')
# """
# 默认情况下读取文件所有内容,小的文件,直接用read读取即可
# 如果是一个大文件(文件大小>内存大小) readline()
# """
# # 按字节进行读取文件内容
# # print(f.read(3))
# # print(f.tell())
# # print(f.readline())
# # print(f.readline())
# # # 读取文件内容,并返回一个列表,列表元素分别为文件的行内容
# # print(f.readlines())
# # f.close()
#
# # 读取文件内容,返回一个列表,让你去掉后面的'\n'
#
# f = open('/tmp/passwd','rb+')
# print(f.tell())
# print(f.read(10))
# """
# seek:指针移动
#     第一个参数:偏移量>0:代表向后移动 <0:代表向前移动
#     第二个参数:
#         0:移动指针到文件开头
#         1:当前位置
#         2:移动指针到文件末尾
# """
# print(f.tell())
# f.seek(0,0)
# print(f.tell())
# f.close()

# f = open('/tmp/passwd','r+')
# print(f.tell())
# print(f.read(10))
# print(f.tell())
# f.write('0000000000000')
# f.close()


f = open('/tmp/passwd')
#print([line.strip() for line in f.readlines()])
print(list(map(lambda x:x.strip(),f.readlines())))

4.with

"""
上下文管理器:打开文件,执行完with语句内容之后,自动关闭文件对象
"""
# f = open('/tmp/passwd')
# with open('/tmp/passwd') as f:
#     print('with语句里面:',f.close())
#     print(f.close())
#
# print('after with语句:',f.closed)

with open('data.txt') as f1,open('data2.txt','w+')as f2:
    # 将第一个文件的内容写入第二个文件中
    f2.write(f1.read())
    f2.seek(0,0)
    print(f2.read())

"""
python2.x:
with open('data.txt')as f1:
    content=f1.read()
with open('data2.txt','w+') as f2:
    f2.write(content)
"""

5.os

import os
# 1.返回操作系统类型 值为:posix,是linux操作系统 值为nt,是windows操作系统
# print(os.name)
# print('Linux' if os.name == 'posix' else 'Windows')

# 2.操作系统的详细信息
info = os.uname()
print(info)
print(info.sysname)
print(info.nodename)

# 3.系统的环境变量
print(os.environ)
# 通过key值获取环境变量对应的value值
print(os.environ.get('PATH'))


#4.判断是否为绝对路径
print(os.path.isabs('/tmp/fffff'))
print(os.path.isabs('hello'))

# 5.生成绝对路径
print(os.path.abspath('hello.png'))
print(os.path.join('/home/kiosk','hello.png'))
print(os.path.join(os.path.abspath('.'),'hello.png'))


#6.获取目录或文件名
filename = '/home/kiosk/PycharmProjects/20190312/day07/hello.png'
print(os.path.basename(filename))
print(os.path.dirname(filename))

# 7.创建目录删除目录]
# mkdir mkdir -p
# os.mkdir('img')
#os.makedirs('img/file1/file2')
# 不能第归删除
# os.rmdir('img')

# 8.创建文件 删除文件
# os.mknod('00_ok.txt')
# os.remove('00_ok.txt')


# 9.文件重命名
# os.rename('data.txt','data11.txt')

# 10.判断文件或目录是否存在
print(os.path.exists('ips.txteeee'))

# 11分离后缀名和文件名
print(os.path.splitext('hello.txt'))

# 13.将目录和文件名分离
print(os.path.split('/tmp/hello/hello.jpg'))
import os
print('%s%30s' %('type','name'))
for x in os.listdir():
    # 判断是否是文件
    if os.path.isfile(x):
        file = os.path.splitext(x)[1]
        file = file.split('.')[1]
        print('%s%30s' %(file+ ' file',x))
    else:
        print('%s%30s' %('folder',x))

你可能感兴趣的:(python(文件、with、os))