Version: 2018.2
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.