python目录判断与创建
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python目录判断与创建相关的知识,希望对你有一定的参考价值。
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目录判断与创建的主要内容,如果未能解决你的问题,请参考以下文章
在Tomcat的安装目录下conf目录下的server.xml文件中增加一个xml代码片段,该代码片段中每个属性的含义与用途