creed205 0 Posted November 3, 2010 Hi Guys, I have been searching for this for some time and I am not sure even if I am searching the forums right at this point. Right now I am doing something via command line and I would prefer to do it in AutoIT. Right now the command line script looks like this: for /f "tokens=6 delims=\" %%1 in ('dir "\\remotecomputer\share\main_folder\%file_name%" /s /b') do set sub_folder=%%1 %file_name% is what I am searching for inside the folder and I would like the to know what %sub_folder% is. The actual location of the file is: \\remotecomputer\share\main_folder\sub_folder\%file_name% This works with the for /f but I don't know how to get this in AutoIT. Thanks for any help. Share this post Link to post Share on other sites
PsaltyDS 39 Posted November 3, 2010 Try the example scripts in the help file under FileFindFirstFile() and FileFindNextFile(). You can also use _FileListToArray(). Valuater's AutoIt 1-2-3, Class... Is now in Session!For those who want somebody to write the script for them: RentACoder"Any technology distinguishable from magic is insufficiently advanced." -- Geek's corollary to Clarke's law Share this post Link to post Share on other sites