Notice: Any messages purporting to come from this site telling you that your password has expired, or that you need to verify your details, confirm your email, resolve issues, making threats, or asking for money, are
spam. We do not email users with any such messages. If you have lost your password you can obtain a new one by using the
password reset link.
Due to spam on this forum, all posts now need moderator approval.
Entire forum
➜ MUSHclient
➜ Lua
➜ Lua Quest
It is now over 60 days since the last post. This thread is closed.
Refresh page
Posted by
| Artheliis
(2 posts) Bio
|
Date
| Thu 05 Jun 2008 04:20 AM (UTC) |
Message
| I am looking to make a way to list files in a directory. I've not found a way to do this in LUA, yet, but I'm sure it's possible I just need to figure out the syntax. If anyone could help, I'd be very thankful. | Top |
|
Posted by
| Nick Gammon
Australia (23,133 posts) Bio
Forum Administrator |
Date
| Reply #1 on Thu 05 Jun 2008 05:15 AM (UTC) |
Message
| See: http://www.gammon.com.au/scripts/doc.php?lua=utils.readdir
Here is an example:
t = assert (utils.readdir ("c:/Program Files/mushclient/worlds/plugins/*.xml"))
require "tprint"
tprint (t)
Output
"msp.xml":
"access_time"=1212465110
"create_time"=1028867459
"write_time"=1028867459
"archive"=true
"size"=3421
"Chat_Redirector.xml":
"access_time"=1212640036
"create_time"=1212639012
"write_time"=1212640036
"archive"=true
"size"=3369
"chat.xml":
"access_time"=1212465110
"create_time"=1135137573
"write_time"=1135137573
"archive"=true
"size"=22757
... and so on ...
|
- Nick Gammon
www.gammon.com.au, www.mushclient.com | Top |
|
Posted by
| Artheliis
(2 posts) Bio
|
Date
| Reply #2 on Thu 05 Jun 2008 11:46 AM (UTC) |
Message
| Thank you sir. I knew there was a way to do it, I just couldn't figure it out, so I thought I'd ask the expert. | Top |
|
The dates and times for posts above are shown in Universal Co-ordinated Time (UTC).
To show them in your local time you can join the forum, and then set the 'time correction' field in your profile to the number of hours difference between your location and UTC time.
11,189 views.
It is now over 60 days since the last post. This thread is closed.
Refresh page
top