Microsoft Excel是Microsoft为使用Windows和Apple Macintosh操作系统的电脑编写的一款电子表格软件。直观的界面、出色的计算功能和图表工具,再加上成功的市场营销,使Excel成为最流行的个人计算机数据处理软件。 今天帮一位网友弄的,A列为文件名,B列为对应的文本文件内容。此代码只适用于Excel2003及以下版本,因FileSearch方法被微软阉割了。 Sub listfile() ””””””””””””””””””””””” ‘ 批量获取指定目录下所有文本文件名和内容 ‘ ‘ ‘ ””””””””””””””””””””””” Dim fs, fso, fl Dim mypath As String Dim theSh As Object Dim theFolder As Object Dim strtmp As String Application.ScreenUpdating = False On Error Resume Next Set fso = CreateObject("Scripting.FileSystemObject") ‘设置搜索路径 Set theSh = CreateObject("shell.application") Set theFolder = theSh.BrowseForFolder(0, "", 0, "") If Not theFolder Is Nothing Then mypath = theFolder.Items.Item.Path End If ‘搜索开始 Set fs = Application.FileSearch With fs .NewSearch .SearchSubFolders = True ‘搜索子目录 .LookIn = mypath ‘搜索路径 .FileName = "*.txt" ‘搜索文件类型为txt If .Execute(SortBy:=msoSortByFileName) = 0 Then C = .FoundFiles.Count ‘统计搜索到的文件个数 For i = 1 To C strtemp = .FoundFiles(i) ‘设置临时文件 n = InStrRev(strtemp, "\") ‘获取文件路径长度(不包括文件名) ‘获取文件名及扩展名 strfilename = Replace(strtemp, Left(strtemp, n), "") ‘从A2单元格开始输出格式为:文件名 Cells(i + 1, 1) = Left(strfilename, Len(strfilename) – 4) Set fl = fso.opentextfile(strtemp, 1) strtmp = fl.readall ‘读取文本内容 Range("b" & i + 1) = strtmp ‘B2开始写入内容 fl.Close Next Else MsgBox "该文件夹里没有符合要求的文件!" End If End With Set fs = Nothing Application.ScreenUpdating = True End Sub
Excel整体界面趋于平面化,显得清新简洁。流畅的动画和平滑的过渡,带来不同以往的使用体验。 |