python:编写XML需要多少写访问权限

时间:2011-06-28 16:19:50

标签: python gentoo

我正在编写一个将数据写入XML文件的python模块。处理写入的代码是:

from xml.dom.minidom import Document
#using DOMXml

main = Document() #create an XML Document

toFile = open('output.xml','w')

main.writexml(toFile, indent ='    ', newl="\n")
#writexml() is the operation from Document that was imported

toFile.close()

最终的output.xml在Gentoo OS上的大小为422字节。鉴于Gentoo的默认块大小为1024字节。我想知道这段代码会产生多少次磁盘写入(因为它依赖于文件操作)。

谢谢!

1 个答案:

答案 0 :(得分:3)

在strace下运行程序以查找。