Definition at line 127 of file FileSystem.h. References Impala::FileNameConcat(), GetReadableFile(), GetWritableFile(), mData, and Valid(). 00128 { 00129 if (! Valid()) 00130 return ""; 00131 00132 String path = FileNameConcat(dir, file); 00133 if (toWrite) 00134 return GetWritableFile(mData.begin(), mData.end(), path, silent); 00135 return GetReadableFile(mData.begin(), mData.end(), path, silent); 00136 }
Here is the call graph for this function: ![]()
|