puter.ui.showOpenFilePicker()
Presents the user with a file picker dialog allowing them to pick a file from their Puter cloud storage.
puter.ui.showOpenFilePicker()
puter.ui.showOpenFilePicker(options)
options
(optional)
A set of key/value pairs that configure the file picker dialog.
multiple
(Boolean): if set to true
, user will be able to select multiple files. Default is false
.accept
(String): The list of MIME types or file extensions that are accepted by the file picker. Default is */*
.image/*
will allow the user to select any image file.['.jpg', '.png']
will allow the user to select files with .jpg
or .png
extensions.A Promise
that resolves to either one FSItem
or an array of FSItem
objects, depending on how many files were selected by the user.
<html>
<body>
<script src="https://js.puter.com/v2/"></script>
<h1 id="file-name"></h1>
<button id="open-file-picker">Open file picker</button>
<pre><code id="file-content"></code></pre>
<script>
document.getElementById('open-file-picker').addEventListener('click', ()=>{
puter.ui.showOpenFilePicker().then(async (file)=>{
// print file name
document.getElementById('file-name').innerHTML = file.name;
// print file content
document.getElementById('file-content').innerText = await (await file.read()).text();
});
});
</script>
</body>
</html>