2018-12-04 19:52:39 -05:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
|
|
|
namespace Ryujinx.HLE.HOS.Services.FspSrv
|
2018-11-18 14:37:41 -05:00
|
|
|
|
{
|
|
|
|
|
public struct DirectoryEntry
|
|
|
|
|
{
|
2018-12-04 19:52:39 -05:00
|
|
|
|
public string Path { get; private set; }
|
|
|
|
|
public long Size { get; private set; }
|
2018-11-18 14:37:41 -05:00
|
|
|
|
|
|
|
|
|
public DirectoryEntryType EntryType { get; set; }
|
|
|
|
|
|
2018-12-04 19:52:39 -05:00
|
|
|
|
public DirectoryEntry(string Path, DirectoryEntryType DirectoryEntryType, long Size = 0)
|
2018-11-18 14:37:41 -05:00
|
|
|
|
{
|
2018-12-04 19:52:39 -05:00
|
|
|
|
this.Path = Path;
|
|
|
|
|
EntryType = DirectoryEntryType;
|
|
|
|
|
this.Size = Size;
|
2018-11-18 14:37:41 -05:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|