NBTExplorer/Model/DirectoryDataNode.cs

67 lines
1.6 KiB
C#
Raw Normal View History

2012-08-31 05:29:32 +00:00
using System.IO;
2012-11-11 18:52:12 +00:00
using System.Collections.Generic;
2012-08-31 05:29:32 +00:00
namespace NBTExplorer.Model
{
public class DirectoryDataNode : DataNode
{
private string _path;
public DirectoryDataNode (string path)
{
_path = path;
}
protected override NodeCapabilities Capabilities
{
get
{
2012-11-11 18:52:12 +00:00
return NodeCapabilities.Search
| NodeCapabilities.Refresh;
2012-08-31 05:29:32 +00:00
}
}
public override string NodeDisplay
{
get { return Path.GetFileName(_path); }
}
public override bool HasUnexpandedChildren
{
get { return !IsExpanded; }
}
protected override void ExpandCore ()
{
foreach (string dirpath in Directory.GetDirectories(_path)) {
Nodes.Add(new DirectoryDataNode(dirpath));
}
foreach (string filepath in Directory.GetFiles(_path)) {
DataNode node = null;
foreach (var item in FileTypeRegistry.RegisteredTypes) {
if (item.Value.NamePatternTest(filepath))
node = item.Value.NodeCreate(filepath);
2012-08-31 05:29:32 +00:00
}
if (node != null)
Nodes.Add(node);
}
}
protected override void ReleaseCore ()
{
Nodes.Clear();
}
2012-11-11 18:52:12 +00:00
public override bool RefreshNode ()
{
Dictionary<string, object> expandSet = BuildExpandSet(this);
Release();
RestoreExpandSet(this, expandSet);
return true;
}
2012-08-31 05:29:32 +00:00
}
}