unity读取文件内容
时间: 2023-09-25 07:12:18 浏览: 88
读取各类文件内容(doc,docx,ppt,pptx,xls,xlsx,pdf,txt等)
3星 · 编辑精心推荐
Unity中读取文件内容可以使用以下代码:
```c#
string filePath = "path/to/file.txt";
string fileContent = "";
//读取文件内容
try {
fileContent = System.IO.File.ReadAllText(filePath);
} catch (System.Exception e) {
Debug.LogError("Failed to read file: " + e.Message);
}
//使用文件内容进行操作
Debug.Log(fileContent);
```
其中,`filePath`是文件路径,可以是相对路径或绝对路径。`fileContent`是读取到的文件内容。使用`System.IO.File.ReadAllText()`方法可以读取整个文件的内容。如果读取文件失败,将会抛出`System.Exception`异常。
阅读全文