In Delphi 2007 how can I make a program to read the first file and then close it to read the second one and so on until the last file?
|
|
|
Are you trying to read every file in a directory? Try this class. This isn't my original code but I've modified and customized it a bit. It'll give you all the filenames that match criteria you set in a string list that you can pass to TFilestream.
|
|||||||||||
|
|
If you want to repeat an action, then what you want is called a loop. Delphi comes with three reserved words for loops: A traditional
or this:
Then you would refer to
|
|||
|
|
|
DIFileFinder might be something that you would like. |
|||
|
|