Difference between revisions of "Lua:getDirectoryList"
Jump to navigation
Jump to search
(Created page with "r = getDirectoryList("C:\\CE\\autorun", true) require 'pl.pretty'.dump(r) { "C:\\CE\\autorun\\ce-plugins", "C:\\CE\\autorun\\ceshare", "C:\\CE\\autorun\\dlls", "C:\\...") |
|||
Line 1: | Line 1: | ||
+ | <pre> | ||
+ | <code> | ||
r = getDirectoryList("C:\\CE\\autorun", true) | r = getDirectoryList("C:\\CE\\autorun", true) | ||
require 'pl.pretty'.dump(r) | require 'pl.pretty'.dump(r) | ||
− | + | </pre> | |
+ | <code> | ||
+ | <p>Print result:</p> | ||
+ | <pre> | ||
+ | <code> | ||
{ | { | ||
"C:\\CE\\autorun\\ce-plugins", | "C:\\CE\\autorun\\ce-plugins", | ||
Line 23: | Line 29: | ||
"C:\\CE\\autorun\\dlls\\src\\Mono\\MonoDataCollector" | "C:\\CE\\autorun\\dlls\\src\\Mono\\MonoDataCollector" | ||
} | } | ||
+ | </code> | ||
+ | </pre> |
Revision as of 06:20, 21 August 2020
<code> r = getDirectoryList("C:\\CE\\autorun", true) require 'pl.pretty'.dump(r)
Print result:
<code>
{
"C:\\CE\\autorun\\ce-plugins",
"C:\\CE\\autorun\\ceshare",
"C:\\CE\\autorun\\dlls",
"C:\\CE\\autorun\\forms",
"C:\\CE\\autorun\\images",
"C:\\CE\\autorun\\xml",
"C:\\CE\\autorun\\ce-plugins\\.git",
"C:\\CE\\autorun\\ce-plugins\\images",
"C:\\CE\\autorun\\ceshare\\forms",
"C:\\CE\\autorun\\ceshare\\images",
"C:\\CE\\autorun\\dlls\\32",
"C:\\CE\\autorun\\dlls\\64",
"C:\\CE\\autorun\\dlls\\src",
"C:\\CE\\autorun\\dlls\\src\\Common",
"C:\\CE\\autorun\\dlls\\src\\Java",
"C:\\CE\\autorun\\dlls\\src\\Mono",
"C:\\CE\\autorun\\dlls\\src\\Java\\CEJVMTI",
"C:\\CE\\autorun\\dlls\\src\\Java\\CEJVMTI\\CEJVMTI",
"C:\\CE\\autorun\\dlls\\src\\Mono\\MonoDataCollector"
}
</code>