赞
踩
open()用于新建文件:
file = open(‘path’+filename+‘文件格式’,‘w’)
例子
import os
name=input('请输入:')
file = open('C:\\Users\\shen\\Desktop\\pythonworkfile\\' + name + '.txt', 'w')
if os.path.exists('C:\\Users\\shen\\Desktop\\pythonworkfile\\'):
print('文件'+name+'建立成功')
else:
print('建立失败')
file.close()
在open方法的后面有一个‘w’,w决定了打开文件的模式为:写入
r:以只读方式打开文件;
r+:打开文件用于读写,指针位于文件的开头;
w+:打开文件用于读写,如果文件存在则打开文件,将原有内容删除;文件不存在则创建文件;
a:打开文件用于追加,指针放在文件末尾,新写入的内容会接在已有内容后面;
a+:打开一个文件用于读写,如果文件存在,则追加模式;文件不存在,新建文件,用于读写;
更详细了解:https://www.runoob.com/python/python-func-open.html
运行截图:
在上述例子中,还用到了另一种方法:
if os.path.exists(‘C:\Users\shen\Desktop\pythonworkfile\’):
这个方法可以判断具体的文件的存在
删除文件:
例子:
import os
name=input('请输入:')
if os.path.exists('C:\\Users\\shen\\Desktop\\pythonworkfile\\'):
os.remove('C:\\Users\\shen\\Desktop\\pythonworkfile\\'+name+'.txt')
print('文件'+name+'删除成功')
else:
print('文件不存在')
file.close()
运行结果:
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。