Cosmos/source/Cosmos.System2/FileSystem/FileSystemFactory.cs
fanoI d2ecdfdeee First part of the work on DiskManager
- plugged DriveInfo
- added tests for DriveInfo
- added to VFS a new method RegisterFilesystem()
2018-04-13 17:43:00 +02:00

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;
}
}