Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bouke/glob
Glob for Swift 5
https://github.com/bouke/glob
glob swift swift-package-manager
Last synced: 16 days ago
JSON representation
Glob for Swift 5
- Host: GitHub
- URL: https://github.com/bouke/glob
- Owner: Bouke
- License: apache-2.0
- Created: 2016-05-19T05:35:06.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2020-12-30T12:37:02.000Z (almost 4 years ago)
- Last Synced: 2024-10-12T07:28:38.793Z (about 1 month ago)
- Topics: glob, swift, swift-package-manager
- Language: Swift
- Homepage:
- Size: 39.1 KB
- Stars: 25
- Watchers: 3
- Forks: 6
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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).