我希望能够以这种方式在JavaScript中列出目录的文件:
$(document).ready(function() {
$("#file-input").on("change", function(e) {
var thefiles = e.target.files
console.log(e.target.files.name)
$.each(thefiles, function(i, item) {
console.log(item)
var thefile = item
$("#thelist").append("FILES: " + thefile.name + "<br />")
})
})
})
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<input type="file" id="file-input" webkitdirectory='test/' directory='/Users/genysix/Desktop/test'>
<div id="thelist"></div>
但我希望能够在不必拥有输入文件的情况下使用它,而是通过分离必须列出的目录的硬路径。 示例:'C:/ temp /'
如果你能帮助我,我将不胜感激