mrevens Posted October 2, 2021 Share Posted October 2, 2021 Ребят, привет, возник такой вопрос и я не знаю как его реализовать, смотрите, я пользователь который находится на сервере и как можно сделать так, что бы на стороне клиента прочитать какой то луа файл и вывести его текст на экран или через текстовый документ куда то, возможно ли такое? Link to comment
mrevens Posted October 2, 2021 Author Share Posted October 2, 2021 Или как вот тут указать правильный путь до любого файла в кэше? local hFile = fileOpen("test.txt", true) -- attempt to open the file (read only) if hFile then -- check if it was successfully opened local buffer while not fileIsEOF(hFile) do -- as long as we're not at the end of the file... buffer = fileRead(hFile, 500) -- ... read the next 500 bytes... outputConsole(buffer) -- ... and output them to the console end fileClose(hFile) -- close the file once we're done with it else outputConsole("Unable to open test.txt") end Link to comment
Kenix Posted October 2, 2021 Share Posted October 2, 2021 (edited) 8 hours ago, mrevens said: Или как вот тут указать правильный путь до любого файла в кэше? local hFile = fileOpen("test.txt", true) -- attempt to open the file (read only) if hFile then -- check if it was successfully opened local buffer while not fileIsEOF(hFile) do -- as long as we're not at the end of the file... buffer = fileRead(hFile, 500) -- ... read the next 500 bytes... outputConsole(buffer) -- ... and output them to the console end fileClose(hFile) -- close the file once we're done with it else outputConsole("Unable to open test.txt") end Читать файл можешь там где вызывается (если на стороне клиента то клиентские файлы), но там есть ограничения на пути (либо текущий ресурс/либо из другого через : (например так fileOpen(":objectSearch/coolObjects.txt"))), вне папки resources читать нельзя. Edited October 2, 2021 by Kenix Link to comment
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now