public static void AddFolder(string name, string folderPath) { using (ShellLibrary library = ShellLibrary.Load(ShellLibrary.CreateLibraryFullName(name), true)) { library.AddFolder(folderPath); } }
/// <summary> /// Add directory to the shell library /// </summary> /// <param name="folderPath">the folder path</param> public void AddDirectory(string folderPath) { using (ShellLibrary shellLibrary = ShellLibrary.Load(LibraryName, true)) { shellLibrary.AddFolder(folderPath); } }