python文件目录遍历保存成xml文件代码

Linux服务器有CentOS、Fedora等,都预先安装了Python,版本从2.4到2.5不等,而Windows类型的服务器也多数安装了Python,所以只要在本机写好一个脚本,上传到对应机器,在运行时修改参数便可。php

Python操做文件和文件夹使用的是os库,下面的代码中主要用到了几个函数:html

os.listdir:列出目录下的文件和文件夹python

os.path.join:拼接获得一个文件/文件夹的全路径apache

os.path.isfile:判断是不是文件bootstrap

os.path.splitext:从名称中取出一个子部分数组

 

下面是目录操做的代码服务器

 代码以下app

复制代码dom

def search(folder, filter, allfile):
    folders = os.listdir(folder)
    for name in folders:
        curname = os.path.join(folder, name)
        isfile = os.path.isfile(curname)
        if isfile:
            ext = os.path.splitext(curname)[1]
            count = filter.count(ext)
            if count>0:
                cur = myfile()
                cur.name = curname
                allfile.append(cur)
        else:
            search(curname, filter, allfile)
    return allfile函数

在返回文件的各类信息时,使用自定义类allfile来保存文件的信息,在程序中只用到了文件的全路径,若是须要同时记录文件的大小、时间、类型等信息,能够仿照代码进行扩充。

 代码以下

复制代码

class myfile:
    def __init__(self):
        self.name = ""

获得存储文件信息的数组后,还能够将其另存成xml格式,下面是代码,在使用时,须要从Document中导入xml.dom.minidom

下面是保存为xml的代码

 代码以下

复制代码

def generate(allfile, xml):
    doc = Document()

    root = doc.createElement("root")
    doc.appendChild(root)

    for myfile in allfile:
        file = doc.createElement("file")
        root.appendChild(file)

        name = doc.createElement("name")
        file.appendChild(name)
        namevalue = doc.createTextNode(myfile.name)
        name.appendChild(namevalue)

    print doc.toprettyxml(indent="")
    f = open(xml, 'a+')
    f.write(doc.toprettyxml(indent=""))
    f.close()

执行的代码以下

 代码以下

复制代码

if __name__ == '__main__':
    folder = "/usr/local/apache/htdocs"
    filter = [".html",".htm",".php"]
    allfile = []
    allfile = search(folder, filter, allfile)
    len = len(allfile)
    print "found: " + str(len) + " files"

    xml = "folder.xml"
    generate(allfile, xml)

Linux命令行状态下,执行Python filesearch.py,即可以生成名为folder.xml的文件。

若是要在Windows中运行该程序,须要把folder变量改为Windows下的格式,例如c:\apache2htdocs,而后执行c:python25python.exe filesearch.py(这里假设python的安装目录是c:python25

 

源码整理:

import osimport sysfrom xml.dom.minidom import Documentclass myfile:    def __init__(self):        self.name = ""def search(folder, filter, allfile):    print ("in search.....")    folders = os.listdir(folder)    for name in folders:        curname = os.path.join(folder, name)        isfile = os.path.isfile(curname)        if isfile:            ext = os.path.splitext(curname)[1]            count = filter.count(ext)            if count>0:                cur = myfile()                cur.name = curname                allfile.append(cur)        else:            search(curname, filter, allfile)    return allfiledef generate(allfile, xml):    doc = Document()    print ("in generate.........")    root = doc.createElement("root")    doc.appendChild(root)    for myfile in allfile:        file = doc.createElement("file")        root.appendChild(file)        name = doc.createElement("name")        file.appendChild(name)        namevalue = doc.createTextNode(myfile.name)        name.appendChild(namevalue)    print doc.toprettyxml(indent="")    f = open(xml, 'a+')    f.write(doc.toprettyxml(indent=""))    f.close()if __name__ == '__main__':     folder = "D:\\mine\\bootstrap-3.3.2\\docs"     filter = [".html",".htm",".php"]     allfile = []      allfile = search(folder, filter, allfile)     len = len(allfile)     print "found: " + str(len) + " files"     xml = "folder.xml"     generate(allfile, xml)        

相关文章
相关标签/搜索