Skip to content
This repository has been archived by the owner on Feb 6, 2024. It is now read-only.

giggio/globdir

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 

Repository files navigation

Globdir

=======

A way to glob Windows directories using .NET. Check here to understand what glob is.

Documentation

Still has to be created, and will be hosted on the github wiki.

Usage

Just add the reference via nuget and call the static GetMatches method on the GlobDir.Glob class.

const string pattern = "**/File*.txt";
var globTestDir = "c:\temp\folder\".Replace("\\", "/");
var matches = Glob.GetMatches(string.Format("{0}" + pattern, globTestDir)).ToList();

Right now, read the tests, as they make it easy to understand the usage.

Install via Nuget:

Install-Package globdir

The package can be found here: http://nuget.org/packages/globdir

Support

Maintainers

This software is open source. The specific license is still to be decided.

About

A library that enables you to glob directories with .NET.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages