Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/Bouke/Glob

Glob for Swift 5
https://github.com/Bouke/Glob

glob swift swift-package-manager

Last synced: 3 months ago
JSON representation

Glob for Swift 5

Awesome Lists containing this project

README

        

Glob
====

Glob for Swift 5.

![Build Status](https://github.com/Bouke/Glob/workflows/Test/badge.svg)

# Usage

```swift
let files = Glob(pattern: "./**/*.swift")
for file in files {
print(file)
}
```

# Credits

Adapted from [efirestone](https://gist.github.com/efirestone/ce01ae109e08772647eb061b3bb387c3).