UnityEditor.iOS.Xcode.PBXProject.RemoveFilesByProjectPathRecursive C# (CSharp) Method

RemoveFilesByProjectPathRecursive() private method

private RemoveFilesByProjectPathRecursive ( string projectPath ) : void
projectPath string
return 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