View Single Post
  #2  
Old 04-15-2011, 11:16 AM
kinook kinook is online now
Administrator
 
Join Date: 03-06-2001
Location: Colorado
Posts: 6,027
The Process Files action always processes in sorted order (actually it's the order returned by FindNextFile, which is alphabetical on NTFS -- see http://msdn.microsoft.com/en-us/libr...=vs.85%29.aspx). One option would be to name the files so the sorted order is correct (i.e., by left-padding with zeros). The attached project would rename the files to sort properly.

Otherwise, you would need to manually sort (iterate with process files and store in sorted order) and then iterate over the sorted list.
Attached Files
File Type: bld sortfiles.bld (2.4 KB, 911 views)
Reply With Quote