我是初学者!我需要离线读取本地文件夹中txt文件中的数据。我知道文件夹路径,但我不知道每个文件的名称。
C:\mypath\first.txt
C:\mypath\second.txt
C:\mypath\third.txt
...
现在要读取单个文件,我使用:
$.ajax({url:"C:\mypath\first.txt",
success:function(result){
//...code for storing the data in a variable...
}
});
如何在不知道他们的名字的情况下一次读取多个文件?就像是:
$.ajax({url:"C:\mypath\*.txt",
success:function(result){
//...code for storing the data in a variable...
}
});
感谢您的任何帮助!