是否可以使用 html 输入和 webkit 目录 select 多个目录?

Is it possible to select multiple directories with html input and webkitdirectory?

我有这个输入,用户可以在其中选择包含要上传的文件的文件夹。有什么方法可以让用户一次 select 多个文件夹?

 <input
                type="file"
                name="upload_files[]"
                directory=""
                webkitdirectory=""
                multiple=""
                onChange={handleImageChange}
                style={{
                  marginTop: '12px',
                  marginBottom: '12px',
                }}
              />

another post 中所述,无法一次 select 多个文件夹。