yavsc/Yavsc/ViewModels/UserFiles/UserDirectoryInfo.cs

36 lines
1.3 KiB
C#

8 years ago
using System;
using System.IO;
using System.Linq;
using Yavsc.Helpers;
namespace Yavsc.ViewModels.UserFiles
{
public class UserDirectoryInfo
{
public string UserName { get; private set; }
8 years ago
public string SubPath { get; private set; }
public UserFileInfo [] Files {
get; private set;
}
public string [] SubDirectories { 
get; private set;
}
private DirectoryInfo dInfo;
public UserDirectoryInfo(string username, string path)
{
UserName = username;
var finalPath = (path==null) ? username : username + Path.DirectorySeparatorChar + path;
if ( !finalPath.IsValidPath() )
8 years ago
throw new InvalidOperationException(
$"File name contains invalid chars, using path {SubPath}");
dInfo = new DirectoryInfo(
Path.Combine(Startup.UserFilesDirName,finalPath));
8 years ago
Files = dInfo.GetFiles().Select
( entry => new UserFileInfo { Name = entry.Name, Size = entry.Length,
CreationTime = entry.CreationTime, LastModified = entry.LastWriteTime }).ToArray();
SubDirectories = dInfo.GetDirectories().Select
( d=> d.Name ).ToArray();
}
}
}