Jump to content

File processing starting at a search point in a directory


Go to solution Solved by Melba23,

Recommended Posts

Posted

I'm new to autoit and have a question regarding file processing.

I have a directory with approximately 1.5 million files.  We are having to run a file converter program on every .doc file.  I have the scripts working using FindFirstFile and FindNextFile to process through the directory.

The problem I have is if the script gets interrupted for any reason and stops, then I have to start processing over again.  Since I do know the last file that was processed, is there anyway to search for that file and begin the file processing from that point?

Thanks for any help that can be provided?

 

  • Moderators
  • Solution
Posted (edited)

rschroll,

I would use FileListToArray to get an array of the files. Then you can loop through them and keep a count of where you are so that if you are interrupted you know where to restart. :)

M23

And welcome to the AutoIt forum, by the way. ;)

Edited by Melba23

Public_Domain.png.2d871819fcb9957cf44f4514551a2935.png Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind

Open spoiler to see my UDFs:

  Reveal hidden contents

 

Posted

Furthermore, Windows gives no guarantee that the order of the files will be the same even between subsequent runs, so knowing which file was last returned from FindNextFile() wouldn't do you any good anyway.

You need either a sorted list or some other method to keep track of where you are. FileListToArray() is indeed a good point to start with.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...