Dreamweaver
Well-known member
- Local time
- Today, 16:52
- Joined
- Nov 28, 2005
- Messages
- 2,467
I could do with some help getting the deatils I need as havent got a clue how to limit the list so I can get the date taken, size I already get that but might as well get them all from one place.
If you could point me in the right direction I might be able to get any other details I think of if icluded thanks mick
P.S. Did notice this
Can you not use InStrRev to get the last "\ " ?
If you could point me in the right direction I might be able to get any other details I think of if icluded thanks mick
P.S. Did notice this
Code:
Do Until I = 0 'find the last "\" and get the filename
I = InStr(1, strFileName, "\", vbBinaryCompare)
strFileName = Mid(strFileName, I + 1)
Loop
Last edited: