如何从 Lua 中切换符号链接目录所指向的内容
我正在使用这个名为 Crank Software 的 UI 开发人员:http://www.cranksoftware.com/ 它提供了一个 API对于卢阿。我试图拥有一个具有多个图像版本的用户界面,其中图像文件夹是符号链接,并且有一些外部操作触发我的 lua 代码来切换符号链接指向的目录。例如:/big/imagea.png、/small/imagea.png、/medium/imagea.png
我以前没有使用过符号链接,而且我对 lua 也很陌生,所以如果您愿意,请将其分解为较小的步骤会。
I am using this UI developer called Crank Software: http://www.cranksoftware.com/ which provides an API for lua. I'm trying to have a user interface that has multiple versions of the images with the images folder being a symbolic link and have some outside action trigger my lua code to switch which directory the symbolic link is pointing to. For instance: /big/imagea.png, /small/imagea.png, /medium/imagea.png
I haven't used Symbolic Links before and I am newish to lua as well, so kindly break it down into smallish steps if you would.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Lua没有提供任何lib来处理文件系统,如果你想知道目录是否是符号的,你必须使用本地代码(例如Crank软件)的导出函数或编写自己的函数。
我不知道你在哪个平台上工作,所以无法帮助你编写这个功能。
Lua did not provide any lib to handle the filesystem, if you want to know the directory is symbolic or not, you have to use a exported function from the native code (e.g. the Crank software) or write your own.
I don't know which platform you are working on, so can't help you to write this function.