Reactjs – How to upload folders to react with special characters in the name
I have a problem with my javascript uploading: I am using this code: const handleParameterSearchUpload = async (event) => { const files = event.target.files; console.log(files); const folders = {}; for (let i = 0; i < files.length; i++) { const…