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.
CloseFor 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.
CloseparentFolder | The path to the parent folder. Must start with "Assets/". |
newFolderName | The name of the new folder. |
string The GUID of the newly created folder, if the folder was created successfully. Otherwise returns an empty string.
Creates a new folder, in the specified parent folder.
The parent folder string must start with the "Assets" folder, and all folders within the parent folder string must already exist. For example, when specifying "Assets/ParentFolder1/Parentfolder2/", the new folder will be created in "ParentFolder2" only if ParentFolder1 and ParentFolder2 already exist.
Note: When Unity attempts to create a folder, if a folder with the same name exists at the same path, Unity adds a sequential number to the end of the file name. For example, "My Folder" becomes "My Folder 1".
using UnityEngine; using UnityEditor;
public class CreateFolderExample { [MenuItem("GameObject/Create Folder and Some Assets")] static void CreateFolder() { AssetDatabase.CreateFolder("Assets", "My Folder"); string guid = AssetDatabase.CreateFolder("Assets/My Folder", "My Another Folder"); string newFolderPath = AssetDatabase.GUIDToAssetPath(guid); Debug.Log(newFolderPath);
// Create a simple material asset in the created folder Material material = new Material(Shader.Find("Specular")); string newAssetPath = newFolderPath + "/MyMaterial.mat"; AssetDatabase.CreateAsset(material, newAssetPath); Debug.Log(AssetDatabase.GetAssetPath(material)); } }