Version: 2017.3
public static string CreateFolder (string parentFolder, string newFolderName);

Parámetros

parentFolder The name of the parent folder.
newFolderName The name of the new folder.

Valor de retorno

string The GUID of the newly created folder.

Descripción

Create a new folder.

using UnityEngine;
using UnityEditor;

public class CreateFolderExample : MonoBehaviour { [MenuItem("GameObject/Create Folder")] static void CreateMaterial() { string guid = AssetDatabase.CreateFolder("Assets", "My Folder"); string newFolderPath = AssetDatabase.GUIDToAssetPath(guid); } }