glob

glob

[code]
func Glob(pattern string) ([]string, error) {
	return filepath.Glob(pattern)
}
[/code]