UnityEditor.iOS.Xcode.PBXProject.RemoveFilesByProjectPathRecursive C# (CSharp) Метод

RemoveFilesByProjectPathRecursive() приватный Метод

private RemoveFilesByProjectPathRecursive ( string projectPath ) : void
projectPath string
Результат void
        internal void RemoveFilesByProjectPathRecursive(string projectPath)
        {
            projectPath = PBXPath.FixSlashes(projectPath);
            PBXGroupData parent = this.GroupsGetByProjectPath(projectPath);
            if (parent != null)
            {
                this.RemoveGroupChildrenRecursive(parent);
                this.RemoveGroupIfEmpty(parent);
            }
        }
PBXProject