MCPcopy Create free account
hub / github.com/MonaSolutions/MonaServer / GetSize

Method GetSize

MonaBase/include/Mona/FileSystem.h:113–113  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

111 static Attributes& GetAttributes(const char* path, Attributes& attributes) { return GetAttributes(path, strlen(path),attributes); }
112
113 static UInt32 GetSize(Exception& ex,const char* path, UInt32 defaultValue=0) { return GetSize(ex, path, strlen(path), defaultValue); }
114 static UInt32 GetSize(Exception& ex, const std::string& path, UInt32 defaultValue=0) { return GetSize(ex, path.data(), path.size(), defaultValue); }
115 static Time& GetLastModified(Exception& ex,const std::string& path, Time& time) { return GetLastModified(ex, path.data(),path.size(), time); }
116 static Time& GetLastModified(Exception& ex, const char* path, Time& time) { return GetLastModified(ex, path,strlen(path), time); }

Callers

nothing calls this directly

Calls 2

dataMethod · 0.45
sizeMethod · 0.45

Tested by

no test coverage detected