public static string AssetPathToGUID (string path);

Parameters

path@param path Путь файловой системы для ассета.

Returns

string GUID.

Description

Get the GUID for the asset at path.

Все пути относятся к папке проекта, например: "Assets/MyTextures/hello.png".

using UnityEngine;
using UnityEditor;

public class Example : MonoBehaviour { [MenuItem("AssetDatabase/AssetPathToGUID")] static void Doit() { string t = AssetDatabase.AssetPathToGUID("Assets/texture.jpg"); Debug.Log(t); } }

If the asset does not exist AssetPathToGUID will return nothing. See AssetDatabase.GUIDFromAssetPath for a version that returns a UnityEditor.GUID instead of a string.