Home |
Search |
Today's Posts |
#12
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
What I posted doesn't do that?
The example code checks every subfolder under "D:\Analysis" and finds the most-recently modified Excel file in each folder. Remove the check for "*.xls" or modify if there are other types of file you want to work with. Is there some way other than using the timestamp on the file by which you're identifying "most recent" ? -- Tim Williams Palo Alto, CA "GregR" wrote in message ups.com... Tim, you just about have it. The only missing part is I want to open the most recent modified file in each subfolder. TIA Greg Tim Williams wrote: Greg, This might help. Tim '########################################### Option Explicit Sub ProcessNewestFiles() Const S_PATH As String = "D:\Analysis" Dim oFSO As Scripting.FileSystemObject Dim foldSub As Folder, sFile As String Set oFSO = New Scripting.FileSystemObject For Each foldSub In oFSO.GetFolder(S_PATH).SubFolders sFile = GetLastModified(foldSub.Path) If sFile < "" Then '***************** 'process sFile here Debug.Print foldSub.Path & " " & sFile '***************** End If Next foldSub End Sub 'Given as folder path, return the path of the most-recently ' modified file (or "" if no files are found. Function GetLastModified(sDirPath As String) As String Dim oFSO As Scripting.FileSystemObject Dim lastDate As Date Dim f As File, retVal As String Set oFSO = New Scripting.FileSystemObject retVal = "" lastDate = CDate("01/01/1901") For Each f In oFSO.GetFolder(sDirPath).Files If f.Name Like "*.xls" Then If f.DateLastModified lastDate Then lastDate = f.DateLastModified retVal = f.Path End If End If Next f GetLastModified = retVal End Function '########################################## "GregR" wrote in message ups.com... Tim, that is correct only one level of subfolders Greg Tim Williams wrote: How many levels of subfolders? Just one level under a main folder? Tim "GregR" wrote in message ups.com... Otto, how do I modify to include subfolders and only run the macro on the most recently modified file in the subfolder. TIA |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
need to upload copied excel files to admin page on website | Excel Discussion (Misc queries) | |||
Use a Macro to Upload Excel File to FTP Server when saving | Excel Programming | |||
Upload multiple text files into 1 excel worksheet + put the filename as the first column in the worksheet | Excel Worksheet Functions | |||
can we upload files in google group | Excel Programming | |||
upload text and/or image files to a web server? | Excel Programming |