mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 20:39:01 +00:00
21 lines
727 B
C#
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;
|
|
}
|
|
}
|
|
}
|