Jump to content

File processing starting at a search point in a directory


Go to solution Solved by Melba23,

Recommended Posts

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?

 

Link to comment
Share on other sites

  • Moderators
  • Solution

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:

Spoiler

ArrayMultiColSort ---- Sort arrays on multiple columns
ChooseFileFolder ---- Single and multiple selections from specified path treeview listing
Date_Time_Convert -- Easily convert date/time formats, including the language used
ExtMsgBox --------- A highly customisable replacement for MsgBox
GUIExtender -------- Extend and retract multiple sections within a GUI
GUIFrame ---------- Subdivide GUIs into many adjustable frames
GUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView items
GUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeView
Marquee ----------- Scrolling tickertape GUIs
NoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxes
Notify ------------- Small notifications on the edge of the display
Scrollbars ----------Automatically sized scrollbars with a single command
StringSize ---------- Automatically size controls to fit text
Toast -------------- Small GUIs which pop out of the notification area

 

Link to comment
Share on other sites

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.

Link to comment
Share on other sites

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
 Share

  • Recently Browsing   0 members

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