private string GetPlatfromPath()
{
if UNITY_EDITOR
string _filepath = Application.dataPath + "/StreamingAssets/";
elif UNITY_IPHONE
string filepath = Application.dataPath +"/Raw/";
elif UNITY_ANDROID
string filepath = "jar:file://" + Application.dataPath + "!/assets/";
endif
return _filepath;
}