MCPcopy Create free account
hub / github.com/Autodesk/AutomaticComponentToolkit / FileExists

Function FileExists

Source/actutils.go:41–44  ·  view source on GitHub ↗

FileExists returns true if and only if the file in a given path exists

(path string)

Source from the content-addressed store, hash-verified

39
40// FileExists returns true if and only if the file in a given path exists
41func FileExists(path string) (bool) {
42 _, err := os.Stat(path);
43 return !os.IsNotExist(err);
44}

Callers 11

BuildBindingGoFunction · 0.85
BuildImplementationCPPFunction · 0.85
buildCPPStubClassFunction · 0.85
buildPascalStubFunction · 0.85
BuildBindingCSharpFunction · 0.85
BuildBindingCExplicitFunction · 0.85
BuildBindingCppImplicitFunction · 0.85
BuildBindingCppExplicitFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected