在 Lua/LuaFileSystem 中创建一个新文件

发布于 2024-11-26 23:13:11 字数 131 浏览 1 评论 0原文

我查看了 Lua & LuaFileSystem Docs 尚未找到创建新文件的方法,我也在这里四处寻找,但目的相同。

请注意,我正在寻找的解决方案必须与操作系统无关,以确保可移植性,但我很高兴针对不同的系统获得不同的答案。

I've looked over the Lua & LuaFileSystem Docs and have yet to find a way to create a new file, I also scouted around on here but to the same end.

As a note, the solution I'm looking for has to be OS neutral to ensure portability, but I'm happy to get different answers for different systems.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

百合的盛世恋 2024-12-03 23:13:11

示例(将“Hello World”写入 test.txt):

$ lua
Lua 5.1.4  Copyright (C) 1994-2008 Lua.org, PUC-Rio
> file = io.open("test.txt", "w")
> file:write("Hello World")
> file:close()
> ^D
$ cat test.txt 
Hello World

另请参阅:Lua IO 教程

Example (writing "Hello World" into test.txt):

$ lua
Lua 5.1.4  Copyright (C) 1994-2008 Lua.org, PUC-Rio
> file = io.open("test.txt", "w")
> file:write("Hello World")
> file:close()
> ^D
$ cat test.txt 
Hello World

See also: Lua IO tutorial

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文