我正在使用拖动和上传文件上传功能。我想识别上传项目是文件夹。是否有任何可能的方法来识别上传项目是javascript中IE浏览器的文件夹。
答案 0 :(得分:0)
您需要使用(非常实验性的)目录API: https://developer.microsoft.com/en-us/microsoft-edge/platform/documentation/dev-guide/html5/folder-upload/
基本上,您需要检查:
event.dataTransfer.items[0].webkitGetAsEntry().isDirectory
// ↑ You may need a loop here