从文本文件 vba 读取数据
声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow
原文地址: http://stackoverflow.com/questions/18705805/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me):
StackOverFlow
Reading data from text file vba
提问by mr.M
I have several subfolders. In each there are text files. It is possible to group text files in one excel file in a such way that there will be one file per excel tab. I have designed code to do this task.
我有几个子文件夹。每个都有文本文件。可以将文本文件分组到一个 Excel 文件中,这样每个 Excel 选项卡就有一个文件。我设计了代码来完成这项任务。
Option Explicit
Sub read_files()
Dim ReadData As String
Dim i As Double
Dim objfso As Object
Dim objfolder As Object
Dim obj_sub_folder As Object
Dim objfile As Object
Dim current_worksheet As Worksheet
Dim new_workbook As Workbook
Dim path As String
Dim filestream As Integer
Set objfso = CreateObject("Scripting.FilesystemObject")
Set objfolder = objfso.getfolder("Z:\test\")
Set new_workbook = Workbooks.Add
i = 1
For Each obj_sub_folder In objfolder.subfolders
i = 1
ReadData = ""
For Each objfile In obj_sub_folder.Files
Set current_worksheet = new_workbook.Worksheets.Add
current_worksheet.Name = objfile.Name
filestream = FreeFile()
path = "Z:\test\" & obj_sub_folder.Name & "\" & objfile.Name
Open path For Input As #filestream
Do Until EOF(filestream)
Input #filestream, ReadData
current_worksheet.Cells(i, 1).Value = ReadData
i = i + 1
Loop
Close filestream
Next
ActiveWorkbook.SaveAs "Z:\test\" & obj_sub_folder.Name
Next End Sub
However, while looping through subfolders, macros saves data from the files in previous subfolders, but I want to save data from files that come from particular sub-folder. Would you be so kind to explain me where is my mistake?
但是,在循环遍历子文件夹时,宏会保存以前子文件夹中文件中的数据,但我想保存来自特定子文件夹的文件中的数据。你能不能向我解释一下我的错误在哪里?
Thank you!
谢谢!
EDIT
编辑
here is working code
这是工作代码
Option Explicit
Sub run()
read_files ("Z:\test\")
End Sub
Sub read_files(path_to_folder As String)
Dim ReadData As String
Dim i As Double
Dim objfso As Object
Dim objfolder As Object
Dim obj_sub_folder As Object
Dim objfile As Object
Dim current_worksheet As Worksheet
Dim new_workbook As Workbook
Dim path As String
Dim filestream As Integer
Set objfso = CreateObject("Scripting.FilesystemObject")
Set objfolder = objfso.getfolder(path_to_folder)
i = 1
For Each obj_sub_folder In objfolder.subfolders
Set new_workbook = Workbooks.Add
For Each objfile In obj_sub_folder.Files
Set current_worksheet = new_workbook.Worksheets.Add
current_worksheet.Name = objfile.Name
filestream = FreeFile()
path = path_to_folder & obj_sub_folder.Name & "\" & objfile.Name
Open path For Input As #filestream
Do Until EOF(filestream)
Input #filestream, ReadData
current_worksheet.Cells(i, 1).Value = ReadData
i = i + 1
Loop
Close filestream
i = 1
Next
ActiveWorkbook.SaveAs path & obj_sub_folder.Name
ActiveWorkbook.Close
Next
End Sub
结束子
回答by mr.Reband
If you want each subfolder's data to be in a separate workbook, then you need to move your new_workbook
definition inside your For Each obj_sub_folder
loop, and also close that workbook after saving:
如果您希望每个子文件夹的数据都在一个单独的工作簿中,那么您需要将您的new_workbook
定义移动到For Each obj_sub_folder
循环中,并在保存后关闭该工作簿:
Set objfso = CreateObject("Scripting.FilesystemObject")
Set objfolder = objfso.getfolder("Z:\test\")
i = 1
For Each obj_sub_folder In objfolder.subfolders
Set new_workbook = Workbooks.Add
i = 1
ReadData = ""
For Each objfile In obj_sub_folder.Files
Set current_worksheet = new_workbook.Worksheets.Add
current_worksheet.Name = objfile.Name
filestream = FreeFile()
path = "Z:\test\" & obj_sub_folder.Name & "\" & objfile.Name
Open path For Input As #filestream
Do Until EOF(filestream)
Input #filestream, ReadData
current_worksheet.Cells(i, 1).Value = ReadData
i = i + 1
Loop
Close filestream
Next
new_workbook.SaveAs "Z:\test\" & obj_sub_folder.Name
new_workbook.Close
Next