Hi,
I need to create FileInputStreams as fast as possible, and I would like to skip the overhead of parseAbsolutePath() called in the File() constructor.
Is it possible to add this function to the File class :
[code]static File constructFileWithoutCheck(const String& fullpath);
File File::constructFileWithoutCheck(const String& fullpath)
{
return File(fullpath, 0);
}[/code]