Hello, I am transitioning from AutoHotkey to AutoIt and am looking for a nudge in the right direction with regard to looping through files and folders. What I would like to do is create a delimited list of certain attributes (filename, path, extension, size, last modified) about all files in network drives. In AutoHotkey I can use "Loop, FilePattern" to go through every file and folder and pull all the information I need. How can I go about doing this efficiently in AutoIt?
From what I've learned so far, it appears I'll need to use "FileListToArray" to create an array of filepaths, then loop through the entire array, using "FileGet . . ." for each element. Is there a better way or am I on the right track?
Please be kind as this is my first post. Thank you!