码迷,mamicode.com
首页 > 编程语言 > 详细

python目录判断与创建

时间:2018-01-12 11:25:32      阅读:158      评论:0      收藏:0      [点我收藏+]

标签:get   new   exists   文件创建   name   getc   path   with   etc   

1、完成目录判断
2、完成文件创建
3、完成cpickle模块化写与读

import cPickle as p,os

dirlis = os.getcwd()
    dirlis_new = dirlis + "\\"+"pytTest"
    print dirlis_new
    if not os.path.exists(dirlis_new):
        os.mkdir(dirlis_new)
        print "目录创建成功!!!"
    else:
        print "目录已经存在!!!"
    os.chdir(dirlis_new)
    print "进入目录,开始新建文件"
    file_name = "python.py"
    with open(file_name,"w") as fo:
        fo.write("#coding=utf-8")
    #p.dump(open(file_name),True)
    f1 = file("tem.pkl","a")
    p.dump("\nprint \"wgood\" ",f1,True)
    f1.close()
    fr = file("tem.pkl","r")
    ar = p.load(fr)[1]
    print ar

python目录判断与创建

标签:get   new   exists   文件创建   name   getc   path   with   etc   

原文地址:http://blog.51cto.com/357712148/2060059

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!