Here is my code will likly be best way to show what I am tryig to do. I actually did find a way to do what I was looking for too it's in the "GetUserID:" section. Thank you for the help, and if you can think of a more efficient way to do this that would be great too.
Public Function FindPics()
Dim FS 'As FileSearch
Dim i As Integer, j As Integer, char As String
Dim dbsStats As Database
Dim rstUDrive As Recordset
'Dim fldFileName As Field, fldFileSize As Field, fldDateLast As Field, fld
Dim strFileName As String, strFileSize As String, DateLast As Date, strUser As String, strExtension As String
Dim strPath
Set dbsStats = CurrentDb
Set rstUDrive = dbsStats.OpenRecordset("tempUDriveStats", dbOpenDynaset)
'Set fldFileName = rstUDrive.Fields("FilePath"

'Set fldFileSize = rstUDrive.Fields("FileSize"

'Set fldDateLast = rstUDrive.Fields("LastModified"

Set FS = Application.FileSearch
With Application.FileSearch
.NewSearch
.LookIn = "u:\BACKUPDATA\"
.SearchSubFolders = True
.FILENAME = "*.*"
.Execute
FindPicks:
For i = 1 To .FoundFiles.Count
strFileName = .FoundFiles.Item(i)
strExtension = ""
If strFileName Like "*.bmp" Then
strExtension = "bmp"
Else
If strFileName Like "*.jpg" Then
strExtension = "jpg"
Else
If strFileName Like "*.jpeg" Then
strExtension = "jpeg"
Else
If strFileName Like "*.gif" Then
strExtension = "gif"
Else
If strFileName Like "*.tif" Then
strExtension = "tif"
Else
If strFileName Like "*.tiff" Then
strExtension = "tiff"
Else
GoTo GETNEXTFILE
End If
End If
End If
End If
End If
End If
GetUserID:
strUser = ""
j = 15 'starting path (.lookin) length +1
char = ""
Do While Not char = "\" 'retrieves name of folder after the starting path one letter at a time
char = VBA.Mid(strFileName, j, 1)
j = j + 1
If char <> "\" Then
strUser = strUser & char
End If
Loop
RecordToTable:
strFileSize = FileLen(.FoundFiles.Item(i))
DateLast = FileDateTime(.FoundFiles.Item(i))
rstUDrive.AddNew
rstUDrive!FILEPATH = strFileName
rstUDrive!FileSize = Val(strFileSize)
rstUDrive!LastModified = DateLast
rstUDrive!UserName = strUser
rstUDrive!FileExtension = strExtension
rstUDrive!WorkRelated = True
rstUDrive.Update
GETNEXTFILE:
Next i
MsgBox "all done"
End With
End Function