AssetDatabase.CreateFolder

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

Parameters

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

Returns

string The GUID of the newly created folder.

Description

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); } }
对文档有任何疑问,请移步至开发者社区提问,我们将尽快为您解答