Added GetDirSep
parent
8c52025470
commit
ba047f5003
|
@ -121,6 +121,11 @@ namespace Test
|
||||||
{
|
{
|
||||||
Console.WriteLine(PhysFS.PhysFS.GetLastError());
|
Console.WriteLine(PhysFS.PhysFS.GetLastError());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void GetDirSeparator(string[] args)
|
||||||
|
{
|
||||||
|
Console.WriteLine(PhysFS.PhysFS.GetDirSeparator());
|
||||||
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
static void Main(string[] args)
|
static void Main(string[] args)
|
||||||
|
@ -149,6 +154,7 @@ namespace Test
|
||||||
commands.Add("mount", Mount);
|
commands.Add("mount", Mount);
|
||||||
commands.Add("enumerate", Enumerate);
|
commands.Add("enumerate", Enumerate);
|
||||||
commands.Add("ls", Enumerate);
|
commands.Add("ls", Enumerate);
|
||||||
|
commands.Add("getdirsep", GetDirSeparator);
|
||||||
|
|
||||||
while (true)
|
while (true)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue