Skip to content

Latest commit

 

History

History
13 lines (11 loc) · 696 Bytes

File metadata and controls

13 lines (11 loc) · 696 Bytes

PathPiper Travis Build Status Windows Build Status

Making the world a better place by providing path abstraction.

// If pathstyle is omitted, the current system path style will be used
var path = UniPath.Parse(@"C:\Windows\System32", PathStyle.Windows);
Console.WriteLine(path.ToString());
Console.WriteLine(path.Name); // System32
Console.WriteLine(path.Extension); // ""
Console.WriteLine(path.HasExtension); // False

Class Diagram