From ba047f50035e548a8df816c9a8e2932ab9319611 Mon Sep 17 00:00:00 2001 From: Francesco Bertolaccini Date: Thu, 28 Jan 2016 22:02:22 +0100 Subject: [PATCH] Added GetDirSep --- Test/Program.cs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Test/Program.cs b/Test/Program.cs index 99a8d15..31a1d96 100644 --- a/Test/Program.cs +++ b/Test/Program.cs @@ -121,6 +121,11 @@ namespace Test { Console.WriteLine(PhysFS.PhysFS.GetLastError()); } + + static void GetDirSeparator(string[] args) + { + Console.WriteLine(PhysFS.PhysFS.GetDirSeparator()); + } #endregion static void Main(string[] args) @@ -149,6 +154,7 @@ namespace Test commands.Add("mount", Mount); commands.Add("enumerate", Enumerate); commands.Add("ls", Enumerate); + commands.Add("getdirsep", GetDirSeparator); while (true) {