|
FileList |
|
The FileList property is a reference to a tFileList queue:
FileList &tFileList
It is created in the Construct and destroyed in the Destruct and used in the DumpFilesInQ and Send2FileList methods.
The tFileList has 3 fields:
tFileList QUEUE
FileName CString(101)
PathName CString(2049)
FullPath CString(2049)
END
FileName
The filename and extension part only, for example "myfile.txt"
PathName
This is the path part only, for example "C:\Users\Arnor\Documents\"
FullPath
This is the full path and filename of the file that was passed on the command line, for example: "C:\Users\Arnor\Documents\myfile.txt"
This queue is filled by the Send2FileList method which takes the command line and parses out the filenames.
See also