Created
July 22, 2017 17:36
-
-
Save ndthanh/fce378759027d98af18664730b0e4ddf to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Option Explicit | |
Sub GetFileNames() | |
Dim xRow As Long | |
Dim xDirect$, xFname$, InitialFoldr$ | |
InitialFoldr$ = "C:\" | |
With Application.FileDialog(msoFileDialogFolderPicker) | |
.InitialFileName = Application.DefaultFilePath & "\" | |
.Title = "Please select a folder to list Files from" | |
.InitialFileName = InitialFoldr$ | |
.Show | |
If .SelectedItems.Count <> 0 Then | |
xDirect$ = .SelectedItems(1) & "\" | |
xFname$ = Dir(xDirect$, 7) | |
Do While xFname$ <> "" | |
ActiveCell.Offset(xRow) = xFname$ | |
xRow = xRow + 1 | |
xFname$ = Dir | |
Loop | |
End If | |
End With | |
End Sub. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment