Legacy Documentation: Version 4.5.0

Script language:

  • JS
  • C#
  • Boo
Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

AssetDatabase.DeleteAsset

static function DeleteAsset(path: string): bool;
static bool DeleteAsset(string path);
static def DeleteAsset(path as string) as bool

Parameters

pathFilesystem path of the asset to be deleted.

Description

Deletes the asset file at path.

Returns true if the asset has been successfully deleted, false if it doesn't exit or couldn't be removed.

All paths are relative to the project folder, for example: "Assets/MyTextures/hello.png"

See Also: AssetDatabase.MoveAssetToTrash.