MCPcopy Create free account
hub / github.com/couchbase/moss / removeFiles

Function removeFiles

store.go:747–756  ·  view source on GitHub ↗

--------------------------------------------------------

(dir string, fnames []string)

Source from the content-addressed store, hash-verified

745// --------------------------------------------------------
746
747func removeFiles(dir string, fnames []string) error {
748 for _, fname := range fnames {
749 err := os.Remove(path.Join(dir, fname))
750 if err != nil {
751 return err
752 }
753 }
754
755 return nil
756}

Callers 1

openStoreFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…