示例#1
0
        /// <summary>
        /// Löscht das Verzeichnis.
        /// </summary>
        public void Delete()
        {
            if (Parent == null)
            {
                throw new InvalidOperationException();
            }

            DirectoryData.Delete(true);
            parent.Detach(this);
        }