mirror of
https://github.com/RGBCube/serenity
synced 2025-05-15 03:04:59 +00:00
9 lines
201 B
C++
9 lines
201 B
C++
#include "InodeIdentifier.h"
|
|
#include "FileSystem.h"
|
|
|
|
ByteBuffer InodeIdentifier::readEntireFile() const
|
|
{
|
|
if (!fileSystem())
|
|
return { };
|
|
return fileSystem()->readEntireInode(*this);
|
|
}
|