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

Python遍历文件夹和读写文件的方法

时间:2015-06-28 12:35:18      阅读:207      评论:0      收藏:0      [点我收藏+]

标签:

  

1、读取指定目录的文件
2、读取本地文件,输出文件内容
3、写入并保存一个文件到指定目录

  Python的代码非常简洁高效,实现以上三大功能仅用了40行左右的代码~ 之前用Java读写、创建、复制、重命名文件要写50多行代码,Python的效率的确很高;

#-*- coding: UTF-8 -*- 

‘‘‘
1、读取指定目录的文件
2、读取本地文件,输出文件内容
3、写入并保存一个文件到指定目录
‘‘‘
import os

# 遍历指定目录,显示目录下的所有文件名
def eachFile(filepath):
    pathDir =  os.listdir(filepath)
    for allDir in pathDir:
        child = os.path.join(%s%s % (filepath, allDir))
        print child.decode(gbk) # .decode(‘gbk‘)是解决中文显示乱码问题

# 读取文件内容并打印
def readFile(filename):
    fopen = open(filename, r) # r 代表read
    for eachLine in fopen:
        print "读取到得内容如下:",eachLine
    fopen.close()
    
# 输入多行文字,写入指定文件并保存到指定文件夹
def writeFile(filename):
    fopen = open(filename, w)
    print "\r请任意输入多行文字"," ( 输入 .号回车保存)"
    while True:
        aLine = raw_input()
        if aLine != ".":
            fopen.write(%s%s % (aLine, os.linesep))
        else:
            print "文件已保存!"
            break
    fopen.close()

if __name__ == __main__:
    filePath = "D:\\FileDemo\\Java\\myJava.txt"
    filePathI = "D:\\FileDemo\\Python\\pt.py"
    filePathC = "C:\\"
    eachFile(filePathC)
    readFile(filePath)
    writeFile(filePathI)
    

 

Python遍历文件夹和读写文件的方法

标签:

原文地址:http://www.cnblogs.com/jackchiang/p/4605327.html

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