Read and write from temp file in Roku

2019-06-21 22:27发布

In Roku, how do I read and write data from a temporary file in the folder tmp:? I cannot find any documentation relating to this. The data which I am storing is too big to be stored in the registry.

1条回答
闹够了就滚
2楼-- · 2019-06-21 22:53

There is two simple functions do read and write data from tmp:/ folder:

  • ReadAsciiFile(filepath as String) as String

    text=ReadAsciiFile("tmp:/config.txt")

  • WriteAsciiFile(filepath as String, text as String) as Boolean

    WriteAsciiFile("tmp:/config.txt", "the text to write")

Further documentation in source.

Source: http://sdkdocs.roku.com/display/sdkdoc/BrightScript+Language+Reference#BrightScriptLanguageReference-78ReadAsciiFilefilepathasStringasString

查看更多
登录 后发表回答