let formData = new FormData();

            fileList.forEach((file) => {
                formData.append("files", file.raw);
            });