mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 12:30:32 +00:00
- plugged DriveInfo - added tests for DriveInfo - added to VFS a new method RegisterFilesystem()
16 lines
409 B
C#
16 lines
409 B
C#
using Cosmos.HAL.BlockDevice;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Cosmos.System.FileSystem
|
|
{
|
|
public class FileSystemFactory
|
|
{
|
|
public virtual string Name { get; private set; }
|
|
|
|
public virtual FileSystem Create(Partition aDevice, string aRootPath, long aSize) => null;
|
|
|
|
public virtual bool IsType(Partition aDevice) => false;
|
|
}
|
|
}
|