HTMLInputElement: webkitdirectory property - Web APIs | MDN (2024)

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 webkitEntries property.

Note: This property is called webkitdirectory in the specification due to its origins as a Google Chrome-specific API. It's likely to be renamed someday.

Value

A Boolean; true if the <input> element should allow picking only directories or false if only files should be selectable.

Understanding the results

After the user makes a selection, each File object in files has its File.webkitRelativePath property set to the relative path within the selected directory at which the file is located. For example, consider this file system:

  • PhotoAlbums
    • Birthdays
      • Jamie's 1st birthday
        • PIC1000.jpg
        • PIC1004.jpg
        • PIC1044.jpg
      • Don's 40th birthday
        • PIC2343.jpg
        • PIC2344.jpg
        • PIC2355.jpg
        • PIC2356.jpg
    • Vacations
      • Mars
        • PIC5533.jpg
        • PIC5534.jpg
        • PIC5556.jpg
        • PIC5684.jpg
        • PIC5712.jpg

If the user chooses PhotoAlbums, then the list reported by files will contain File objects for every file listed above—but not the directories. The entry for PIC2343.jpg will have a webkitRelativePath of PhotoAlbums/Birthdays/Don's 40th birthday/PIC2343.jpg. This makes it possible to know the hierarchy even though the FileList is flat.

Note: The behavior of webkitRelativePath is different in Chromium < 72. See this bug for further details.

Examples

In this example, a directory picker is presented which lets the user choose one or more directories. When the change event occurs, a list of all files contained within the selected directory hierarchies is generated and displayed.

HTML

html

<input type="file" id="filepicker" name="fileList" webkitdirectory multiple /><ul id="listing"></ul>

JavaScript

js

document.getElementById("filepicker").addEventListener( "change", (event) => { let output = document.getElementById("listing"); for (const file of event.target.files) { let item = document.createElement("li"); item.textContent = file.webkitRelativePath; output.appendChild(item); } }, false,);

Result

Specifications

Specification
File and Directory Entries API
# dom-htmlinputelement-webkitdirectory

Browser compatibility

BCD tables only load in the browser

See also

HTMLInputElement: webkitdirectory property - Web APIs | MDN (2024)
Top Articles
What Are the Three Components of Master Data Management?
What are the best swing trading indicators?
$4,500,000 - 645 Matanzas CT, Fort Myers Beach, FL, 33931, William Raveis Real Estate, Mortgage, and Insurance
Gamevault Agent
Nehemiah 4:1–23
Identifont Upload
Aadya Bazaar
Readyset Ochsner.org
Heska Ulite
What is IXL and How Does it Work?
True Statement About A Crown Dependency Crossword
Which Is A Popular Southern Hemisphere Destination Microsoft Rewards
Cincinnati Bearcats roll to 66-13 win over Eastern Kentucky in season-opener
Yesteryear Autos Slang
World History Kazwire
Scholarships | New Mexico State University
Think Up Elar Level 5 Answer Key Pdf
2024 U-Haul ® Truck Rental Review
Aberration Surface Entrances
Ubg98.Github.io Unblocked
Webcentral Cuny
Accident On 215
Never Give Up Quotes to Keep You Going
Sef2 Lewis Structure
How Long After Dayquil Can I Take Benadryl
Temu Seat Covers
Lbrands Login Aces
A Man Called Otto Showtimes Near Carolina Mall Cinema
Tu Housing Portal
My Dog Ate A 5Mg Flexeril
Renfield Showtimes Near Marquee Cinemas - Wakefield 12
Why Are The French So Google Feud Answers
Mumu Player Pokemon Go
Craigslist Maryland Baltimore
Solarmovie Ma
Teenbeautyfitness
AP Microeconomics Score Calculator for 2023
KITCHENAID Tilt-Head Stand Mixer Set 4.8L (Blue) + Balmuda The Pot (White) 5KSM175PSEIC | 31.33% Off | Central Online
Hisense Ht5021Kp Manual
Chuze Fitness La Verne Reviews
Enjoy4Fun Uno
Why I’m Joining Flipboard
Dispensaries Open On Christmas 2022
California Craigslist Cars For Sale By Owner
Sofia Franklyn Leaks
56X40X25Cm
Lorton Transfer Station
Neil Young - Sugar Mountain (2008) - MusicMeter.nl
The Machine 2023 Showtimes Near Roxy Lebanon
Sc Pick 3 Past 30 Days Midday
Kindlerso
Latest Posts
Article information

Author: Msgr. Benton Quitzon

Last Updated:

Views: 6172

Rating: 4.2 / 5 (43 voted)

Reviews: 82% of readers found this page helpful

Author information

Name: Msgr. Benton Quitzon

Birthday: 2001-08-13

Address: 96487 Kris Cliff, Teresiafurt, WI 95201

Phone: +9418513585781

Job: Senior Designer

Hobby: Calligraphy, Rowing, Vacation, Geocaching, Web surfing, Electronics, Electronics

Introduction: My name is Msgr. Benton Quitzon, I am a comfortable, charming, thankful, happy, adventurous, handsome, precious person who loves writing and wants to share my knowledge and understanding with you.