Page MenuHomeMusing Studio

fileutils.go
No OneTemporary

fileutils.go

package fileutils
import (
"os"
)
// Exists returns whether or not the given file exists
func Exists(p string) bool {
if _, err := os.Stat(p); err == nil {
return true
}
return false
}

File Metadata

Mime Type
text/plain
Expires
Thu, Mar 12, 7:41 PM (1 d, 22 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
3647586

Event Timeline