Python 读写xml,合并两个xml文件object节点,并完成缩进问题

本文介绍了如何使用Python进行XML文件的读写操作,特别是合并两个XML文件中的object节点,并解决了合并后文件的缩进格式问题,确保了合并后的XML结构清晰易读。
摘要由CSDN通过智能技术生成
import os
import xml.etree.ElementTree as ET
from xml.etree.ElementTree import Element
import gflags
import sys
from PIL import Image

Flags = gflags.FLAGS
gflags.DEFINE_string(
    'source_dir1', 'C:/Users/Administrator/Desktop/test/test1', 'source_dir1')

gflags.DEFINE_string(
    'source_dir2', 'C:/Users/Administrator/Desktop/test/test2', 'source_dir2')

gflags.DEFINE_string(
    'result_dir', 'C:/Users/Administrator/Desktop/test/result', 'result_dir')

def copy_img(inputpath,outputpath):
    for rt ,folders,files in os.walk(inputpath):
        for folder in folders:
            folder_path = os.path.join(rt,folder)
            files = os.listdir(folder_path)
            for file in files:
                if file.endswith('jpg'):
                    dir= outputpath + '/' + folder
                    oldpath = os.path.join(folder_path,file)
                    newpath = os.path.join(dir, file)
                    img = Image.open(oldpath)
                    img.save(newpath)
                    print('save successfully %s'%newpath)


def delect_node(inputpath,sku):
    for rt ,folder,files in os.walk(inputpath):
        for file in files:
            if file.endswith('xml'):
      
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值