Ok to do this you will have you use a VBA macro, what you actually looking for is not that hard but requires a bit of programming knowledge.
Step 1
You will have to add the developer ribbon on excel, if you are using 2010 here is how.
Step 2
On the developer tab click on Visual Basic
and it will open the VB interface, I will provide you the script but you need to add the 'Microsoft Scripting Runtime' reference.
Step 3
• On the Visual Basic Select Tools - References from the drop-down menu
• A listbox of available references will be displayed
• Tick the check-box next to 'Microsoft Scripting Runtime'
• The full name and path of the scrrun.dll file will be displayed below the listbox
• Click on the OK button
Step 4
Selec ThisWorkbook and paste the following code
Sub ViewFiles()
theRow = 3
Call ShowFiles(Range("A1"), True)
End Sub
Sub ShowFiles(path, subfolders)
Set obj = New Scripting.FileSystemObject
Set Source = obj.GetFolder(path)
On Error Resume Next
For Each file In Source.Files
theCol = 2
Cells(theRow, theCol).Value = file.path
theCol = theCol + 1
Cells(theRow, theCol).Value = file.Name
theCol = theCol + 1
Cells(theRow, theCol).Value = file.Size
theCol = theCol + 1
theRow = theRow + 1
Next
If subfolders Then
For Each subFolder In Source.subfolders
Call ShowFiles(subFolder.path, True)
Next
End If
End Sub
Step 5
On the cell A1 paste the path you want to see, then press ALT +F8 and execute the macro called ViewFiles
this will update the workbook with all the files.
It should look something like this:

Let me know if it worked for you!