フォルダー全体のアップロードに Jquery-File-Upload ( https://github.com/blueimp/jQuery-File-Upload ) を使用しています。そして、formData オブジェクトに relativePath が追加されたファイルのアップロードに問題があります。以下はコードです:
var formData = $( ":input" ).serializeArray();
$('#upload').bind('fileuploadsubmit', function (e, data) {
$.each(data.files, function (index, file) {
console.log('Added file: ' + file.name+ ' Path :'+file.relativePath);
data.formData = {'relativePath': file.relativePath};
});
console.log(data);
});
個々のファイルごとにサーバー側で「relativePath」パラメーターを取得できません。サーバー上のディレクトリ構造を保持するために、このパラメーターを渡しています。