Cosmos/source/Cosmos.System2_Plugs/System/IO/PathInternalImpl.cs

21 lines
727 B
C#

//#define COSMOSDEBUG
using IL2CPU.API.Attribs;
using Cosmos.System;
namespace Cosmos.System_Plugs.System.IO
{
[Plug(TargetName = "System.IO.PathInternal, System.IO.FileSystem")]
public static class PathInternalImpl
{
/*
* TODO make this better for example we can call VFSManager.GetIsCaseSensitive() and make any Filesystem
* return this property set as true if the FileSystem is case sensitive (for example Ext3) or
* case insensitive (for example FAT)
*/
public static bool GetIsCaseSensitive()
{
Global.mFileSystemDebugger.SendInternal($"GetIsCaseSensitive() called false always returned");
return false;
}
}
}