Version: 2017.4
LanguageEnglish
  • C#
  • JS

Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

PBXProject.AddFolderReference

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Submission failed

For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

public method AddFolderReference(path: string, projectPath: string, sourceTree: iOS.Xcode.PBXSourceTree): string;
public string AddFolderReference(string path, string projectPath, iOS.Xcode.PBXSourceTree sourceTree);

Parameters

pathThe physical path to the folder on the filesystem.
projectPathThe project path to the folder.
sourceTreeThe source tree the path is relative to. By default it's PBXSourceTree.Source. The PBXSourceTree.Group tree is not supported.

Returns

string The GUID of the added folder reference. It can later be used to add the file for building to targets, etc.

Description

Adds a new folder reference to the list of known files.

The group structure is automatically created to correspond to the project path. To add the folder reference to the list of files to build, pass the returned value to AddFileToBuild.