MCPcopy Create free account
hub / github.com/Illation/ETEngine / WriteFile

Method WriteFile

Engine/source/EtCore/FileSystem/Facade/FileBaseLinux.hpp:27–32  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

25}
26
27bool FILE_BASE::WriteFile( FILE_HANDLE handle, const std::vector<uint8> & content )
28{
29 int32 result;
30 result = write( handle, content.data(), content.size() );
31 return result != -1;
32}
33
34bool FILE_BASE::DeleteFile( const char * pathName )
35{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected