Click here to Skip to main content
6,629,885 members and growing! (23,200 online)
Email Password   helpLost your password?
Enterprise Systems » SharePoint Server » Web Parts     Intermediate License: The Code Project Open License (CPOL)

Document Library Tree View Web Part for SharePoint

By Nioosha Kashani

Document Library Tree View Web Part for SharePoint Server 2007.
C#, .NET, ASP.NET, Dev
Version:2 (See All)
Posted:22 Jun 2009
Views:12,466
Bookmarked:15 times
Announcements
Loading...
 
Search    
Advanced Search
Add to IE Search
printPrint   add Share
      Discuss Discuss   Broken Article?Report  
6 votes for this article.
Popularity: 3.23 Rating: 4.15 out of 5

1

2
1 vote, 16.7%
3
2 votes, 33.3%
4
3 votes, 50.0%
5

intro.gif

Introduction

The document libraries are one of the most popular features of SharePoint. Many companies have implemented their archives and Windows file sharing in document libraries. One useful view of directories and files in a document library is the treeview. If we show other useful information like size and number of files in each directory, it will be more useful for the users.

In this article, we will implement a treeview Web Part for the document library. Our intended features of this Web Part are:

  1. The tree view will show all files and folders of a document library.
  2. The size and number of files in each directory will be shown for users as a tool tip of each directory.
  3. User can select and change his target document library in an easy and graphical view.
  4. The files and directories will be sorted based on their name.

Installation and Usage

To install the library tree Web Part, you can run setup.bat in the command prompt on your server. To do so, use the following format:

setup.bat -install -siteurl http://testserver:8080

This will install the Web Part on your site collection. Edit a Web Part page like default.aspx. Select "Add a web part" and you can see the Library Tree Web Part on the Miscellaneous category:

addwebpart.gif

Select Library Tree and press the Add button. Edit the Web Part and choose "Modify Shared Webpart". In the property pane, press the Browse button of the "Document library to view" textbox and select a document library. You can also type the name of the document library in that textbox. Click the Apply button.

listpicker.gif

How to use the source code

The source code is written in Visual Studio 2005 with the Visual Studio extension for Windows SharePoint Services version 1.1 .The project type is Web Part and the language is C#.

Design and implementation

  1. Core functionality
  2. .

    Each document library has a root folder. For retrieving files and folders in a folder and extracting the size and number of files in each folder, we will use these functions:

    1. Getting the files in a folder:
    2. public static List<FileInfo> GetFilesInFolder(SPFolder folder)
      {
          List<FileInfo> result = new List<FileInfo>();
          FileInfo fileinfo;
          foreach (SPFile file in folder.Files)
          {
              fileinfo = new FileInfo();
              fileinfo.Name = file.Name;
              fileinfo.Size = file.Length / 1024;
              fileinfo.URL = file.Url;
              fileinfo.IconURL = file.IconUrl;
              fileinfo.File = file;
              result.Add(fileinfo);
          }
          return result;
      }
    3. Getting the folders in a folder:
    4. public static List<FolderInfo> GetFoldersInFolder(SPFolder folder)
      {
          List<FolderInfo> result = new List<FolderInfo>();
          FolderInfo folderinfo;
          SPFolderCollection subFolders = folder.SubFolders;
          foreach (SPFolder subFolder in subFolders)
          {
              folderinfo = new FolderInfo();
              folderinfo.Name = subFolder.Name;
              folderinfo.Size = GetFolderSize(subFolder) / 1024;
              folderinfo.URL = subFolder.Url;
              folderinfo.FilesNumber = GetNumberOfFilesInFolder(subFolder);
              result.Add(folderinfo);
          }
          return result;
      }
    5. Getting the folder size:
    6. public static long GetFolderSize(SPFolder folder)
      {
          long folderSize = 0;
          foreach (SPFile file in folder.Files)
          {
              folderSize += file.Length;
          }
          foreach (SPFolder subfolder in folder.SubFolders)
          {
              folderSize += GetFolderSize(subfolder);
          }
          return folderSize;
      }
    7. Getting the number of files in a folder:
    8. public static int GetNumberOfFilesInFolder(SPFolder folder)
      {
          int folderNum = 0;
          foreach (SPFile file in folder.Files)
          {
              folderNum += 1;
          }
          foreach (SPFolder subfolder in folder.SubFolders)
          {
              folderNum += GetNumberOfFilesInFolder(subfolder);
          }
          return folderNum;
      }
  3. Populating trees.
  4. We can easily populate our tree view using the above functions. The main points are:

    1. The root folder of a document library can be retrieved:
    2. SPFolder root = doclib.RootFolder;
    3. We defined the FileInfo and FolderInfo classes for holding files and folder properties and sorting them. For each of these two, we have classes that implement the IComparer interface named FileInfoComparer and FolderInfoComparer. These classes are used for sorting the FileInfo and FolderInfo lists.
    4. //This class will store files information for use in  tree view
      public class FileInfo
      {      
          private string _Name;
          public string Name {get{return _Name;}set{_Name = value;}}
      
          private long _Size;
          public long Size {get{return _Size;}set{_Size = value;}}
      
          private string _URL;
          public string URL {get{return _URL;}set{_URL = value;}}
      
          private string _IconURL;
          public string IconURL {get{return _IconURL;}set{_IconURL = value;}}
      
          private SPFile _File;
          public SPFile File{get{return _File;}set{_File = value;}}
      }
      
      //We will use this class for sorting FileInfo classes.
      public class FileInfoComparer : System.Collections.Generic.IComparer<FileInfo>      
      {
          private SortDirection m_direction = SortDirection.Ascending;
          public FileInfoComparer()
              : base(){}
      
          public FileInfoComparer(SortDirection direction)
          {
              m_direction = direction;
          }
      
          int System.Collections.Generic.IComparer<FileInfo>.Compare(FileInfo x, FileInfo y)
          {
              if (x == null && y == null)
              {
                  return 0;
              }
              else if (x == null && y != null)
              {
                  return (m_direction == SortDirection.Ascending) ? -1 : 1;
              }
              else if (x != null && y == null)
              {
                  return (m_direction == SortDirection.Ascending) ? 1 : -1;
              }
              else
              {
                  return
                      (m_direction == SortDirection.Ascending)
                          ? x.Name.CompareTo(y.Name)
                          : y.Name.CompareTo(x.Name);
              }
          }
      }
      
      public class FolderInfo
      {
          private string _Name;
          public string Name{get{return _Name;}set{_Name = value;}}
      
          private long _Size;
          public long Size{get{return _Size;}set{_Size = value;}}
      
          private string _URL;
          public string URL{get{return _URL;}set{_URL = value;}}
      
          private long _FilesNumber;
          public long FilesNumber{get{return _FilesNumber;}set{_FilesNumber = value;}}
      }
      
      
      public class FolderInfoComparer : System.Collections.Generic.IComparer<FolderInfo>
      {
          private SortDirection m_direction = SortDirection.Ascending;
      
          public FolderInfoComparer()
              : base(){}
      
          public FolderInfoComparer(SortDirection direction)
          {
              m_direction = direction;
          }
      
          int System.Collections.Generic.IComparer<FolderInfo>.Compare(FolderInfo x, FolderInfo y)
          {
              if (x == null && y == null)
              {
                  return 0;
              }
              else if (x == null && y != null)
              {
                  return (m_direction == SortDirection.Ascending) ? -1 : 1;
              }
              else if (x != null && y == null)
              {
                  return (m_direction == SortDirection.Ascending) ? 1 : -1;
              }
              else
              {
                  return
                      (m_direction == SortDirection.Ascending)
                          ? x.Name.CompareTo(y.Name)
                          : y.Name.CompareTo(x.Name);
              }
          }
      }
    5. We have a recursive function for defining nodes of our tree based on the core functionalities.
    6. public static TreeNode GetFolderNode(TreeNode node, SPFolder folder, string baseURL)
      {
          List<FolderInfo> folders = GetFoldersInFolder(folder);
          folders.Sort(new FolderInfoComparer(SortDirection.Ascending));
          TreeNode folderNode;
          for (int j = 0; j <= folders.Count - 1; j++)
          {
              folderNode = new TreeNode();
              folderNode.NavigateUrl = baseURL + "/" + folders[j].URL;
              folderNode.ImageUrl = baseURL + "/_layouts/images/folder.gif";
              folderNode.Text = folders[j].Name;
              folderNode.ToolTip = "Size:" + folders[j].Size.ToString() + " KBs " + 
                                   " Files:" + folders[j].FilesNumber.ToString();
              SPFolder subfolder = folder.SubFolders[folders[j].URL];
              folderNode.ChildNodes.Add(GetFolderNode(folderNode, subfolder, baseURL));
              node.ChildNodes.Add(folderNode);
          }
          TreeNode fileNode;
          List<FileInfo> files = GetFilesInFolder(folder);
          files.Sort(new FileInfoComparer(SortDirection.Ascending));
          for (int i = 0; i <= files.Count - 1; i++)
          {
              fileNode = new TreeNode();
              fileNode.ImageUrl = baseURL + "/_layouts/images/" + files[i].IconURL;
              fileNode.NavigateUrl = baseURL + "/" + files[i].URL;
              fileNode.Text = files[i].Name;
              fileNode.ToolTip = "Size:" + files[i].Size + " KBs ";
              node.ChildNodes.Add(fileNode);
          }
          return node;
      }
    7. The CreateChildControls() method of the Web Part calls the functions and renders the interface.
    8. protected override void CreateChildControls()
      {
          base.CreateChildControls();
          SPWeb wb = SPContext.Current.Web;
          string baseURL = wb.Url.ToString();
          string _CorrectedLibraryPath;
          try
          {
              if (_LibraryPath == "")
              {
                  throw new Exception("No Document Library selected. " + 
                        "Please select one from web part properties pane.");
              }
      
              //check if the library name was selected from picker or entered manually
              if (_LibraryPath.Substring(0, 1) == "/")
              {
                  _CorrectedLibraryPath = _LibraryPath.Substring(1);
              }
              else
              {
                  _CorrectedLibraryPath = _LibraryPath;
              }
      
              SPDocumentLibrary doclib = (SPDocumentLibrary)wb.Lists[_CorrectedLibraryPath];
      
              // A table for layout 
              Table tbl;
              TableRow row;
              TableCell cell;
              tbl = new Table();
              row = new TableRow();
              cell = new TableCell();
      
              // first row for title
              cell.VerticalAlign = VerticalAlign.Middle;
              cell.HorizontalAlign = HorizontalAlign.Left;
              Label lblTitle = new Label();
              lblTitle.Text = "Tree View of " + doclib.Title +":" ;
              cell.Controls.Add(lblTitle);
              row.Controls.Add(cell);
              tbl.Controls.Add(row);
      
              //second row for treeview
              row = new TableRow();
              cell = new TableCell();
              cell.VerticalAlign = VerticalAlign.Middle;
              cell.HorizontalAlign = HorizontalAlign.Left;
              TreeView TreeView1 = new TreeView();                
              SPFolder root = doclib.RootFolder;
              TreeNode node = new TreeNode();
              node = Utility.GetFolderNode(node, root, baseURL);
              node.Text = doclib.Title;
              node.NavigateUrl = doclib.DefaultViewUrl;
              long size = Utility.GetFolderSize(root) / 1024;
              long numFiles = Utility.GetNumberOfFilesInFolder(root);
              node.ToolTip = "Size:" + size.ToString() + " KBs " + 
                             " Files:" + numFiles.ToString();
              node.ImageUrl = baseURL + "/_layouts/images/folder.gif";
              TreeView1.Nodes.Add(node);
              TreeView1.ShowLines = true;
              TreeView1.EnableViewState = false;
              cell.Controls.Add(TreeView1);
              row.Controls.Add(cell);
              tbl.Controls.Add(row);
      
              //add table to webpart
              this.Controls.Add(tbl);
          }
          catch (Exception ex)
          {
              Label errorLabel = new Label();
              string errorType = ex.GetType().Name;
              string errorMessage="";
              if (errorType == "InvalidCastException")
              {
                  errorMessage = "Error: Please select a document library for tree view.";
              }
              if (errorType == "ArgumentException")
              {
                  errorMessage = "Error: There is no such document " + 
                                 "library with this name: " + _LibraryPath;
              }
              errorLabel.Text = errorMessage;
              this.Controls.Add(errorLabel);
          }
      }
    9. For selecting the target document library, we use a customized property and a custom pane for the list picker which is a feature of MOSS 2007. The source code and the method of implementation is the work of Ton Stegeman from "Selecting a SharePoint list in a webpart toolpart".
    10. In brief, we can use PickerTreeDialog.js for selecting a site or list name for a Web Part property. You can see further details in his post.

Further improvements

  1. Give the user an option to sort files and directories based on other properties such as size or date of modification.
  2. Populating the tree may take more time for bigger document libraries. We can populate the tree view on demand. This means that nodes will not be populated until the user expands that node.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Nioosha Kashani


Member
MCP (Microsoft Certified Professional)
Senior Software Developer in AIRIC (Automotive Design and Research Company).
Capabilities and interests:
.NET Framework, ASP.NET, Windows Application, Windows Workflow Foundation, SharePoint Customization and Development,SQL Server, NHibernate, BPMN and UML.
Master of Industrial Engieering from Poly-Technic of Tehran
Occupation: Software Developer (Senior)
Company: AIRIC
Location: Iran, Islamic Republic Of Iran, Islamic Republic Of

Other popular SharePoint Server articles:

Article Top
You must Sign In to use this message board.
FAQ FAQ 
 
Noise Tolerance  Layout  Per page   
 Msgs 1 to 19 of 19 (Total in Forum: 19) (Refresh)FirstPrevNext
GeneralProblem with the web part PinmemberEugenioMorini6:56 2 Nov '09  
GeneralCollapse all folders to display only level 1 folder on page load. Pinmembertanhanmeng0:35 30 Oct '09  
QuestionReduce the Library Tree Pinmembertoumatouma2:29 22 Oct '09  
GeneralObject require PinmemberDunkan19776:06 27 Aug '09  
GeneralRe: Object require PinmemberDunkan19776:39 27 Aug '09  
Questionplace in default.master PinmemberPatrickBlesi10:36 29 Jul '09  
QuestionError Pinmemberfedupwiththis8:27 22 Jul '09  
GeneralGood work PinmemberMoim Hossain8:48 2 Jul '09  
QuestionHaving the Doc Lib TreeView Web Part in the Quick Launch and display the content on the right PinmemberGold Code6:10 2 Jul '09  
QuestionI am facing one problem with it can you please help me out in it Pinmembermnkatwork21:11 28 Jun '09  
QuestionRe: I am facing one problem with it can you please help me out in it Pinmembermnkatwork22:04 28 Jun '09  
AnswerRe: I am facing one problem with it can you please help me out in it PinmemberNioosha Kashani4:16 1 Jul '09  
GeneralRe: I am facing one problem with it can you please help me out in it PinmemberArmine Vardanyan7:14 27 Jul '09  
GeneralRe: I am facing one problem with it can you please help me out in it PinmemberKaren Tice11:59 27 Jul '09  
Generalmodification for custom list Pinmemberoneilaus17:27 24 Jun '09  
GeneralRe: modification for custom list PinmemberNioosha Kashani20:43 24 Jun '09  
GeneralCustom List support is ready PinmemberNioosha Kashani20:22 26 Jun '09  
GeneralRe: Custom List support is ready Pinmembermart19868:47 2 Jul '09  
GeneralRe: Custom List support is ready PinmemberMatin Habibi1:58 22 Aug '09  

General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

PermaLink | Privacy | Terms of Use
Last Updated: 22 Jun 2009
Editor: Smitha Vijayan
Copyright 2009 by Nioosha Kashani
Everything else Copyright © CodeProject, 1999-2009
Web18 | Advertise on the Code Project