在没有文件的情况下在Treeview中显示文件夹和子文件夹

时间:2015-05-13 03:38:27

标签: c# asp.net treeview

我需要做的是在树视图上显示文件夹和子文件夹。这不应包括文件夹内部或外部的文件。我现在完成的是我在树视图中显示目录。我现在需要的是删除文件。

这是我的代码:

TreeNode onjParent = new TreeNode("D:\\", "D:\\");
                onjParent.PopulateOnDemand = true;
                TreeView1.Nodes.Add(onjParent);

                TreeView1.CollapseAll();

代码背后:

LinkedList::LinkedList(const LinkedList& listObj)
{
    ListNode* newNode = nullptr; // Create new node
    ListNode* copyPtr = nullptr; // Point to original object

    if(!listObj.head)
        return;
    else
    {
        copyPtr = listObj.head;

        newNode = new ListNode;
        this->head = newNode;
        head->value = copyPtr->value;
        copyPtr = copyPtr->next;

        while(copyPtr)
        {
            newNode->next = new ListNode;
            newNode = newNode->next;
            newNode->value = copyPtr->value;
            copyPtr = copyPtr->next;
            newNode->next = nullptr;
        }
    }
}

我只想删除叶子。并仅显示文件夹和子文件夹。 enter image description here

0 个答案:

没有答案