MCPcopy Create free account
hub / github.com/beefytech/Beef / GetFileDir

Method GetFileDir

BeefySysLib/Common.cpp:1023–1029  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1021}
1022
1023String Beefy::GetFileDir(const StringImpl& path)
1024{
1025 int slashPos = BF_MAX((int)path.LastIndexOf('\\'), (int)path.LastIndexOf('/'));
1026 if (slashPos == -1)
1027 return "";
1028 return path.Substring(0, slashPos);
1029}
1030
1031String Beefy::GetFileName(const StringImpl& path)
1032{

Callers

nothing calls this directly

Calls 2

SubstringMethod · 0.80
LastIndexOfMethod · 0.45

Tested by

no test coverage detected