2014-07-27 13:21:06 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.IO;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using RainmeterStudio.Model;
|
|
|
|
|
|
|
|
|
|
namespace RainmeterStudio.Utils
|
|
|
|
|
{
|
|
|
|
|
public static class DirectoryHelper
|
|
|
|
|
{
|
2014-07-28 17:18:18 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets a tree of the folder structure
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="folder">Folder</param>
|
|
|
|
|
/// <returns>A tree</returns>
|
2014-07-27 13:21:06 +00:00
|
|
|
|
public static Tree<Reference> GetFolderTree(string folder)
|
|
|
|
|
{
|
|
|
|
|
// Build tree object
|
|
|
|
|
Reference reference = new Reference(Path.GetFileName(folder), folder);
|
|
|
|
|
Tree<Reference> tree = new Tree<Reference>(reference);
|
|
|
|
|
|
|
|
|
|
// Navigate folder structure
|
|
|
|
|
if (Directory.Exists(folder))
|
|
|
|
|
{
|
|
|
|
|
foreach (var item in Directory.EnumerateDirectories(folder)
|
|
|
|
|
.Concat(Directory.EnumerateFiles(folder)))
|
|
|
|
|
{
|
|
|
|
|
tree.Add(GetFolderTree(item));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Return tree
|
|
|
|
|
return tree;
|
|
|
|
|
}
|
2014-07-28 17:18:18 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Returns true if two paths are equal
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="path1">First path</param>
|
|
|
|
|
/// <param name="path2">Second path</param>
|
|
|
|
|
/// <returns>True if the paths are equal</returns>
|
|
|
|
|
public static bool PathsEqual(string path1, string path2)
|
|
|
|
|
{
|
|
|
|
|
path1 = System.IO.Path.GetFullPath(path1);
|
|
|
|
|
path2 = System.IO.Path.GetFullPath(path2);
|
|
|
|
|
|
|
|
|
|
return String.Equals(path1, path2, StringComparison.InvariantCultureIgnoreCase);
|
|
|
|
|
}
|
2014-07-27 13:21:06 +00:00
|
|
|
|
}
|
|
|
|
|
}
|