CFindFiles Class
The CFindFiles class provides file searching capability. This class is used to get a list of files in a folder that match a file name template.
Construction |
Object = CFindFiles:new() Object = CFindFiles:new( sFolder ) Object = CFindFiles:new( sFolder, Template ) |
Destruction |
Object:delete() |
Returns a lua table containing the names of the files in a folder, optionally matching a file name template. This function uses the CFindFile class internally but does not provide access to it. |
Creates a new instance of a CFindFiles object. Various constructors are available. |
|
Deletes the instance of the CFindFiles object. |
Returns the current path saved by the last call to Next(). |
Returns a lua table containing the list of all files found in the folder using the specified file name templte. |
|
Opens access to file searching using a specified folder and filename template. |
|
Begins iteration over file names. Used with Next. |
|
Returns the next file found. |
|
Closes the current object's access to the file system, but does not delete the CFileFind object. |