MCPcopy Create free account
hub / github.com/EasyRPG/Player / IsFile

Method IsFile

src/platform.cpp:56–58  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

54}
55
56bool Platform::File::IsFile(bool follow_symlinks) const {
57 return GetType(follow_symlinks) == FileType::File;
58}
59
60bool Platform::File::IsDirectory(bool follow_symlinks) const {
61 return GetType(follow_symlinks) == FileType::Directory;

Callers 2

MakeDirectoryMethod · 0.45
platform.cppFile · 0.45

Calls 1

GetTypeFunction · 0.85

Tested by

no test coverage detected