41 lines
1.0 KiB
C#
41 lines
1.0 KiB
C#
/*
|
|
* Author: Nikolay Dvurechensky
|
|
* Site: https://www.dvurechensky.pro/
|
|
* Gmail: dvurechenskysoft@gmail.com
|
|
* Last Updated: 12 мая 2025 06:51:53
|
|
* Version: 1.0.7
|
|
*/
|
|
|
|
namespace FileSearch.Logic.UI.Entries
|
|
{
|
|
internal class PathEntry : IPathEntry
|
|
{
|
|
private readonly FileSystemInfo _fileSystemInfo;
|
|
|
|
public PathEntry(FileSystemInfo fileSystemInfo)
|
|
{
|
|
if (fileSystemInfo == null) throw new ArgumentNullException("fileSystemInfo");
|
|
|
|
_fileSystemInfo = fileSystemInfo;
|
|
}
|
|
|
|
public FileSystemInfo FileSystemInfo
|
|
{
|
|
get { return _fileSystemInfo; }
|
|
}
|
|
|
|
public bool IsDirectory
|
|
{
|
|
get { return _fileSystemInfo is DirectoryInfo; }
|
|
}
|
|
|
|
public virtual ListViewItem BuildListViewItem()
|
|
{
|
|
var name = _fileSystemInfo.FullName;
|
|
if (this.IsDirectory)
|
|
name = string.Concat("[", name, "]");
|
|
return new ListViewItem(name);
|
|
}
|
|
}
|
|
}
|