2015-02-07 117 views
0

我正在使用javascript來處理本地唯一網站上的圖像。我正在嘗試獲取包含指定文件夾中特定字符的圖像。例如,如果有一個名爲「run0.jpg」的圖像,我希望能夠通過在文件夾中搜索帶有包含字符「0」的jpg擴展名的文件來返回圖像的路徑。我嘗試了一些沒有成功的事情。獲取包含特定字符串的特定文件夾中的文件

有誰知道任何JavaScript技巧,可以幫助我完成這個任務嗎?謝謝,任何見解表示讚賞

+0

不可能。 Javascript在瀏覽器中運行,你不能去繞過本地文件系統。 – Abovestand 2015-02-07 17:53:20

回答

1

如果正確地解釋問題,在「本地唯一網站」,IEG,file://協議,或localhost,試圖搜索本地文件夾並返回「路徑」圖像具有文件名中的特定字符?

嘗試

// array of character to search for 
var arr = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9] 
// results 
, res = []; 
// request variations of file name, 
// utilizing `arr` characters 
$.each(arr, function(value, i) { 
    $.ajax("file:///path/to/local/folder/run" + value + ".jpg") 
    .then(function(data, textStatus) { 
    // if request successful, push `url`, or "path", to `res` 
    res.push(this.url); 
    }) 
}); 

console.log(res); 

爲了利用file://協議,在鉻/ chromiumn,見How do I make the Google Chrome flag 「--allow-file-access-from-files」 permanent?;在localhost,參見Built-in web server

相關問題