webkitdirectory property
      
      bool
      get
      webkitdirectory
      
    
    
The HTMLInputElement.webkitdirectory is a property
that reflects the
webkitdirectory
HTML attribute
and indicates that the input element should let the user select
directories instead of files.
When a directory is selected, the directory and its entire hierarchy of
contents are included in the set of selected items.
The selected file system entries can be obtained using the
HTMLInputElement.webkitEntries property.
Note: This property is called
webkitEntriesin the specification due to its origins as a Google Chrome-specific API. It's likely to be renamed someday.
Implementation
external bool get webkitdirectory;
      
      set
      webkitdirectory
      (bool value) 
      
    
    
    
Implementation
external set webkitdirectory(bool value);