// This returns true if the specified file exists
 internal override bool FileExists(string filename, int unused)
 {
     return(files.FileExists(filename));
 }                                                                                                             //mxd
 // This returns true if the specified file exists
 protected override bool FileExists(string filename)
 {
     return(files.FileExists(filename));
 }