Cosmos/source/Cosmos.System/FileSystem/Listing/File.cs
Matthijs ter Woord d9a9737608 Filesystem/VFS/FAT work by @charlesbetros has been merged into main kernel.
This does NOT mean it's fully working yet!
2015-10-02 17:12:00 +02:00

16 lines
No EOL
415 B
C#

using System;
using System.Linq;
using System.Threading.Tasks;
namespace Cosmos.System.FileSystem.Listing
{
public class File : Base
{
//TODO:UInt64? Size until ulong works.. nullable types have a problem right now
public File(FileSystem aFileSystem, string aName, UInt64 aSize)
: base(aFileSystem, aName)
{
mSize = aSize;
}
}
}