forked from mirrors/NBTExplorer
56 lines
1.3 KiB
C#
56 lines
1.3 KiB
C#
|
using System.IO;
|
|||
|
|
|||
|
namespace NBTExplorer.Model
|
|||
|
{
|
|||
|
public class DirectoryDataNode : DataNode
|
|||
|
{
|
|||
|
private string _path;
|
|||
|
|
|||
|
public DirectoryDataNode (string path)
|
|||
|
{
|
|||
|
_path = path;
|
|||
|
}
|
|||
|
|
|||
|
protected override NodeCapabilities Capabilities
|
|||
|
{
|
|||
|
get
|
|||
|
{
|
|||
|
return NodeCapabilities.Search;
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
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);
|
|||
|
}
|
|||
|
|
|||
|
if (node != null)
|
|||
|
Nodes.Add(node);
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
protected override void ReleaseCore ()
|
|||
|
{
|
|||
|
Nodes.Clear();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|