I have a For....Next statement that goes through folders on a drive looking for bmp files. I want to record each folder name, and only the folder name, as it is accessed.
Example
searches:
g:\stuff\folder1
finds:
file1.bmp , records folder1
file234.bmp , records folder1
reaches end of folder1
searches:
g:\stuff\folder23
finds:
file23324.bmp , records folder23
file2.bmp , records folder23
reaches end of folder23.......
not sure if that's clear or not basically I have a string
that can change and I want to be able to use something like a mid(string,length,start) type of function without knowing exactly where to "start" or what the "length" is.
Example
searches:
g:\stuff\folder1
finds:
file1.bmp , records folder1
file234.bmp , records folder1
reaches end of folder1
searches:
g:\stuff\folder23
finds:
file23324.bmp , records folder23
file2.bmp , records folder23
reaches end of folder23.......
not sure if that's clear or not basically I have a string
that can change and I want to be able to use something like a mid(string,length,start) type of function without knowing exactly where to "start" or what the "length" is.