博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
将文件夹下的所有txt文件加载到本文档中
阅读量:6647 次
发布时间:2019-06-25

本文共 523 字,大约阅读时间需要 1 分钟。

Function InsertIntoDoc(strPath as string)

  Set fso=CreateObject("Scripting.FileSystem")

  Set objFolder=fso.GetFolder(strPath)

  Set objFiles=objFolder.Files

  For each objFile In objFiles

    Debug.Print objFile.Name

    Set fout=fso.OpenTextFile(strPath & "\" & objFile.Name,1,False)

    tmpOut=fout.ReadAll

    str1=str1 & objfile.Name & chr(13)

    str1=str1 & tmpout & chr(13) & chr(13) & chr(13)

  Next

  Selection.TypeText Text:=str1

End Sub

 

CommandButton1_Click()

  Call InsertIntoDoc("E:\......\DataBase")

End Sub

转载地址:http://jbuto.baihongyu.com/

你可能感兴趣的文章