mirror of
https://github.com/AssetRipper/AssetRipper.git
synced 2025-12-11 20:15:29 +01:00
17 lines
425 B
C#
17 lines
425 B
C#
namespace AssetRipper.IO.Files;
|
|
|
|
public partial class LocalFileSystem : FileSystem
|
|
{
|
|
public static LocalFileSystem Instance { get; } = new();
|
|
|
|
public partial class LocalFileImplementation
|
|
{
|
|
public override Stream Create(string path) => System.IO.File.Create(path);
|
|
}
|
|
|
|
public partial class LocalDirectoryImplementation
|
|
{
|
|
public override void Create(string path) => System.IO.Directory.CreateDirectory(path);
|
|
}
|
|
}
|