linux下python怎么在其他文件夹创建文件?求指点啊,弄了很久不明白

linux下python怎么在其他文件夹创建文件?求指点啊,弄了很久不明白,第1张

假你想写一个文件filename='/root/wujin/5.2/03.html'

但是文件夹可能不存在。

先这样子

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()


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/yw/8737714.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-20
下一篇 2023-04-20

发表评论

登录后才能评论

评论列表(0条)

保存