All Projects → pkg4go → glob

pkg4go / glob

Licence: MIT license
Golang glob

Programming Languages

go
31211 projects - #10 most used programming language

Labels

Projects that are alternatives of or similar to glob

Unused Files Webpack Plugin
Glob all files that are not compiled by webpack under webpack's context
Stars: ✭ 210 (+1400%)
Mutual labels:  glob
matcher
Matcher is a fast path matcher/globber supporting globstar/doublestar
Stars: ✭ 52 (+271.43%)
Mutual labels:  glob
tartifacts
📦 Create artifacts for your assemblies
Stars: ✭ 20 (+42.86%)
Mutual labels:  glob
matched
Glob matching with support for multiple patterns and negation. Use `~` in cwd to find files in user home, or `@` for global npm modules.
Stars: ✭ 25 (+78.57%)
Mutual labels:  glob
faster-than-walk
Faster recursive directory walk on Python 3
Stars: ✭ 36 (+157.14%)
Mutual labels:  glob
to-absolute-glob
Make a glob pattern absolute, ensuring that negative globs and patterns with trailing slashes are correctly handled.
Stars: ✭ 16 (+14.29%)
Mutual labels:  glob
Glob Stream
A Readable Stream interface over node-glob.
Stars: ✭ 172 (+1128.57%)
Mutual labels:  glob
Glob
Glob for Swift 5
Stars: ✭ 20 (+42.86%)
Mutual labels:  glob
glob
Pure Nim library for matching file paths against Unix style glob patterns.
Stars: ✭ 58 (+314.29%)
Mutual labels:  glob
expand-brackets
Expand POSIX bracket expressions (character classes) in glob patterns.
Stars: ✭ 26 (+85.71%)
Mutual labels:  glob
dots
Implements the wildcard file matching in Go used by golint, go test etc.
Stars: ✭ 26 (+85.71%)
Mutual labels:  glob
rollup-plugin-glob-import
A rollup plugin to use glob-star.
Stars: ✭ 18 (+28.57%)
Mutual labels:  glob
bowman
A simple static site generator with an integrated toolchain for efficient development and delivery.
Stars: ✭ 17 (+21.43%)
Mutual labels:  glob
Copy Webpack Plugin
Copy files and directories with webpack
Stars: ✭ 2,679 (+19035.71%)
Mutual labels:  glob
glob-fs
file globbing for node.js. speedy and powerful alternative to node-glob. This library is experimental and does not work on windows!
Stars: ✭ 54 (+285.71%)
Mutual labels:  glob
Draxt
draxt.js – NodeList/jQuery-like package for File System (node.js)
Stars: ✭ 192 (+1271.43%)
Mutual labels:  glob
regXwild
⏱ Superfast ^Advanced wildcards++? | Unique algorithms that was implemented on native unmanaged C++ but easily accessible in .NET via Conari (with caching of 0x29 opcodes +optimizations) etc.
Stars: ✭ 20 (+42.86%)
Mutual labels:  glob
sic
🦜 Accessible image processing and conversion from the terminal. Front-end for image-rs/image.
Stars: ✭ 96 (+585.71%)
Mutual labels:  glob
globrex
Glob to regular expression with support for extended globs.
Stars: ✭ 52 (+271.43%)
Mutual labels:  glob
deglob
📂 Take a list of glob patterns and return an array of file locations, respecting `.gitignore` and allowing for ignore patterns via `package.json`.
Stars: ✭ 38 (+171.43%)
Mutual labels:  glob

Build Status Badge Go Docs Badge

Glob

  • glob for Golang, add **/* support.

Usage

import "github.com/haoxins/glob"

func main() {
  matches, err = glob.Glob(".", "**/*.yaml")
  Expect(err).To(BeNil())
  Expect(len(matches)).To(Equal(1))
  Expect(matches[0]).To(Equal(".github/workflows/test.yaml"))
}
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].