我有一个包含文件夹列表的文件夹(组织>>客户编号)。有没有办法读取文件夹名称(客户编号)并使用lua将它们放在表中?
该文件夹位于路径:c:\ user \ organization;在组织下,子文件夹是由其ID标记的客户文件夹。我想阅读ID并将它们放在桌子上与另一个列表进行比较
请指教。
答案 0 :(得分:2)
I was able to get the folder names using the following code
a = {}
for dir in io.popen([[dir "C:\Users\" /b /ad]]):lines() do table.insert(a, dir) end
print(table.getn(a))