public static string CreateFolder (string parentFolder, string newFolderName);

파라미터

parentFolderThe name of the parent folder.
newFolderNameThe name of the new folder.

반환

string The GUID of the newly created folder.

설명

Create a new folder.

using UnityEngine;
using UnityEditor;

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