我需要使用GWT中的“浏览”按钮选择多个文件或文件夹。这是我正在尝试的代码片段。我可以选择多个文件,但它不适用于单个文件夹选择。
public MultiFileSelection( Element element )
{
super( element );
element.setAttribute( "multiple", "multiple" ); //$NON-NLS-1$ //$NON-NLS-2$
element.setAttribute( "webkitdirectory", "" ); //$NON-NLS-1$ //$NON-NLS-2$
element.setAttribute( "directory", "" ); //$NON-NLS-1$ //$NON-NLS-2$
}
这适用于多个文件选择但我无法实现文件夹选择,我的最终目标是通过相同的浏览按钮实现多个文件或文件夹选择。