MCPcopy Create free account
hub / github.com/crownengine/crown / stat

Method stat

src/core/filesystem/filesystem_apk.cpp:136–145  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

134}
135
136Stat FilesystemApk::stat(const char *path)
137{
138 CE_UNUSED(path);
139
140 Stat st;
141 st.file_type = Stat::REGULAR;
142 st.size = 0;
143 st.mtime = UINT64_MAX;
144 return st;
145}
146
147bool FilesystemApk::exists(const char *path)
148{

Callers 4

scan_directoryMethod · 0.45
add_fileMethod · 0.45
read_requestMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected