klauspost / filepathx

Add double-star support to path/filepath

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

filepathx

A small filepath extension library that supports double star globbling.

Forked from https://github.com/yargevad/filepathx which appears dead.

Documentation

GoDoc: https://pkg.go.dev/github.com/klauspost/filepathx

Install

go get github.com/klauspost/filepathx

Usage Example

You can use a/**/*.* to match everything under the a directory that contains a dot, like so:

package main

import (
	"fmt"
	"os"

	"github.com/klauspost/filepathx"
)

func main() {
	if 2 != len(os.Args) {
		fmt.Println(len(os.Args), os.Args)
		fmt.Fprintf(os.Stderr, "Usage: go build example/find/*.go; ./find <pattern>\n")
		os.Exit(1)
		return
	}
	pattern := os.Args[1]

	matches, err := filepathx.Glob(pattern)
	if err != nil {
		panic(err)
	}

	for _, match := range matches {
		fmt.Printf("MATCH: [%v]\n", match)
	}
}

Given this directory structure:

find a
a
a/b
a/b/c.d
a/b/c.d/e.f

This will be the output:

go build example/find/*.go
./find 'a/**/*.*'
MATCH: [a/b/c.d]
MATCH: [a/b/c.d/e.f]

About

Add double-star support to path/filepath

License:MIT License


Languages

Language:Go 100.0%