- Set AllDataFiles
AllDataFiles
The predefined set AllDataFiles contains the references to all data
files stored in the data manager file currently loaded within an AIMMS
project.
Set AllDataFiles {
Index : IndexDataFiles;
Definition : AllCases + AllDataSets;
}
Definition
The contents of the set
AllDataFilesis the collection of (integer) references to all data files (i.e. cases and datasets) stored within the data manager file currently loaded within an AIMMS project.
Updatability
The contents of the set can only be modified by adding or deleting cases and dataset in the Data Manager or through the Data menu, or using various case and dataset interface functions.
Note
Elements of the set
AllDataFilesare more commonly referenced through its subsetsAllCasesandAllDataSets.Further information about the integer data file references can be obtained through the functions
DataFileGetAcronym,DataFileGetDescription,DataFileGetGroup,DataFileGetName,DataFileGetOwner,DataFileGetPathandDataFileGetTime.The integer data file references stored in the set
AllDataFilesare only guaranteed to be unique within a single AIMMS session, and, furthermore, only within the context of a single data manager file associated with a project. As a consequence, additional data file information retrieved through the functions listed above must be refreshed after opening another data manager file.
See also
The sets AllCases, AllDataSets.