■Android実機内ではApplication.streamingAssetsPathはつかえない。
Assets/StreamingAssets の直下にFileList.txtを置いた場合、
下記のようなパスにしないと取得できない
こちらのサイトを参考にしました。
http://halcyonsystemblog.blog.fc2.com/blog-entry-78.html
TextReader txtReader;
string description = "";
string txtBuffer = "";
string textFileName = "FileList.txt";
string path = "jar:file://" + Application.dataPath + "!/assets" + "/" + textFileName;
WWW www = new WWW(path);
yield return www;
txtReader = new StringReader(www.text);
while ((txtBuffer = txtReader.ReadLine()) != null)
{
description = description + txtBuffer + ",";
}