Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 201
Default Find all the files in a folder

I had been using the FileSearch function to locate all the files of a
particular type in a folder. Office2007 appears to have replaced that
function with a FileSystemObject class, but i can't get that to work. Here
is what I had been using. Any help would be appreciated.

Set fs = Application.FileSearch
With fs
.LookIn = Range("C7").Value
.SearchSubFolders = True
.FileName = "*.csv"
If .Execute() 0 Then
Row = 1
For i = 1 To .FoundFiles.Count

  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 140
Default Find all the files in a folder

Hi Phil

This works in 2007 although it is not clear from your code post what
you want to do. Looks like you are counting the files found so that
is what the following does. Post if you want a more specific reply.

Take care

Marcus

Option Explicit
Sub Open_Txt()
Dim oWbk As Workbook
Dim wb As Workbook
Dim sFil As String
Dim sPath As String
Dim strFullName As String
Dim Cnt As Integer
Dim i As Integer

Application.DisplayAlerts = False
Application.ScreenUpdating = False

Cnt = 0
sPath = "R:\"
ChDir sPath
sFil = Dir("*.csv")

Do While sFil < ""
strFullName = sPath & sFil
sFil = Dir
Cnt = Cnt + 1
Loop
MsgBox Cnt

End Sub
Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
How to find all folder and/or files in a specific location Mr. GetRight[_2_] Excel Programming 1 July 3rd 08 11:08 AM
How to find all folder and/or files in a specific location Mr. GetRight Excel Discussion (Misc queries) 0 July 2nd 08 06:51 PM
find all the excel files in a folder. jackm1 Excel Programming 6 July 20th 05 11:00 PM
Find and Replace on all worksheets on all files in a folder Rob Slagle[_3_] Excel Programming 3 April 27th 05 03:12 PM
how to step thru only one subfolder of a folder to find like files foamfollower Excel Programming 1 November 11th 03 08:40 PM


All times are GMT +1. The time now is 01:45 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"