Beispiel #1
0
        public static void DeletePath(string root)
        {
            if (Directory.Exists(root))
            {
                ShellHelpers.EmptyPath(root);

                Directory.Delete(root, true);
            }
        }