编程小白艾雪儿 发表于 2022-6-13 17:02:19

python读取文件

本帖最后由 编程小白艾雪儿 于 2022-6-13 17:31 编辑

#fold中含有子文件夹,子文件夹中含有图片,需要把各个子文件夹中的图片分别插入word

from docx import Document
from docx.shared import Inches
import os
from PIL import Image


# 要插入的图片所在的文件夹
fold=r"C:\\Users\liqian6\Desktop\python\digao\诚信核查"

#遍历fold中的子文件夹,提取子文件夹名称作为新建word的名称(doc_name)         
for root, dirs, files in os.walk(fold):
    for i in range(0,len(dirs)):
      doc=Document()
      filepath = r'C:\\Users\liqian6\Desktop\python\digao\诚信核查\\'+dirs
      doc_name = os.path.basename(filepath)
      
      #遍历子文件夹中的图片,每个子文件夹建立一个word
      for root, dirs, pics in os.walk(dirs):            
            for j in range(0,len(pics)):
                picpath = filepath+'\\'+pics
                pic_name = os.path.basename(picpath)
               
                #跳过子文件夹中有PDF文件
                if (picpath.endswith('.pdf')):
                  continue                     
               
                try:
                  #将图片的名字也插入word中
                  doc.add_paragraph(pic_name)
                  #插入图片
                  doc.add_picture(picpath,width=Inches(6),height=Inches(4))
                except Exception:
                  pic_tmp=Image.open(picpath)
                  # 如果格式有问题,就用save转换成默认的jpg格式
                  pic_tmp.save(pic_tmp)
                  # 把处理后的图片放进Document变量doc中
                  doc.add_picture(picpath, width=Inches(6),height=Inches(4))
                doc.save(doc_name+'.docx')
      
            #输出保存成功的标志
            print(doc_name+"successfully added.")
      

运行情况
Traceback (most recent call last):

File "C:\Users\liqian6\Desktop\python\digao\word_v1.1.py", line 16, in <module>
    filepath = r'C:\\Users\liqian6\Desktop\python\digao\诚信核查\\'+dirs

IndexError: list index out of range

只建立了一个word,好像是    for i in range(0,len(dirs)): 这一行有问题,小白求教
{:10_266:}

编程小白艾雪儿 发表于 2022-6-13 17:30:48

已解决!
for root, dirs, files in os.walk(fold):
    for d in dirs:
      doc=Document()
      doc_name = os.path.basename(d)
      for root, dirs, pics in os.walk(d):
            for i in range(0,len(pics)):
页: [1]
查看完整版本: python读取文件