/// <summary>
 /// Duplicates the asset at path and stores it at newPath.
 /// Returns true if the asset has been successfully duplicated, false if it doesn't exit or couldn't be duplicated.
 /// All paths are relative to the project folder, for example: "Assets/Plugins/IOS/hello.png".
 /// </summary>
 /// <param name="path"> Filesystem project source relative path. </param>
 /// <param name="newPath"> Filesystem project destination relative path.</param>
 public static bool CopyAsset(string path, string newPath)
 {
     path    = FixRelativePath(path);
     newPath = FixRelativePath(newPath);
     return(SA_AssetDatabaseProxy.CopyAsset(path, newPath));
 }