我正在尝试创建一个应用程序来创建一个 xml 文件,并且我想为某些元素分配一个文本。此文本包含文件夹上的图像文件。代码如下:
import glob
import os
import os.path
from xml.etree import ElementTree
from xml.dom import minidom
import xml.etree.ElementTree as ET
def prettify(elem):
"""Return a pretty-printed XML string for the Element.
"""
rough_string = ElementTree.tostring(elem, 'utf-8')
reparsed = minidom.parseString(rough_string)
return reparsed.toprettyxml(indent=" ")
path = "/home/unkuiri/Ubuntu One/Wallpapers/*"
background = ET.Element('background')
starttime = ET.SubElement(background, 'starttime')
year = ET.SubElement(starttime, 'year')
month = ET.SubElement(starttime, 'month')
day = ET.SubElement(starttime, 'day')
hour = ET.SubElement(starttime, 'hour')
minute = ET.SubElement(starttime, 'minute')
second = ET.SubElement(starttime, 'second')
static = ET.SubElement(background, 'static')
duration_stat = ET.SubElement(static, 'duration')
files = ET.SubElement(static, 'file')
transition = ET.SubElement(background, 'transition')
duration_trans = ET.SubElement(transition, 'duration')
from1 = ET.SubElement(transition, 'from')
to = ET.SubElement(transition, 'to')
dirList = glob.glob(path)
while len(background.findall("./static/file")) <= len([name for name in os.listdir('.') if os.path.isfile(name)]):
background.append(static)
background.append(transition)
continue
for fname in dirList:
to.text = fname
files.text = fname
from1.text = fname
print prettify(background)
此代码输出格式正确的 xml,但仅使用最后一个路径,重复次数与文件夹中的文件数一样多。我想要的是它为每个“文件”元素打印一个路径,并在前面的“to”元素和下一个“元素”上打印相同的路径。也许这是一个我不知道的简单解决方案。我还是个新手。
提前致谢