但是文件夹可能不存在。
先这样子
targetpath = os.path.dirname(filename)
if not os.path.isdir(targetpath):
os.makedirs(targetpath)
然后你就可以打到filename,写入内容了。
#python
f=open('f.txt','w') # r只读,w可写,a追加
for i in range(0,10):f.write(str(i)+'\n')
例子:
#!/usr/bin/python
#coding=utf-8
import os
import time
import sys
f=open('a.txt','a')
f.write(os.popen('netstat -nltp | grep 22').read())
f.close()
扩展资料:关于上述创建文件,文件内容追加
#python
import random
f=open('f.txt','a')
for i in range(0,10):f.write(str(random.randint(0,9)))
. . .
f.write('\n')
f.close()
或者
#python
import rando
f=open('f.txt','a')
for i in range(0,10):
for i in range(0,10):f.write(str(random.randint(0,9)))
f.write('\n')
f.close()
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)