using System.IO; namespace Pithos.Client.WPF { public class FileEntry { public string FileName { get; set; } private string _fullPath; public string FullPath { get { return _fullPath; } set { _fullPath = value; FileName = Path.GetFileName(value); } } } }