我有自己的自定义系统,需要创建txt文件以便在有新订单时打印现金收据。我需要将这些文件本地保存到计算机的特定位置,但是有没有办法将文件保存到该位置而不提示用户选择文件位置?如果您创建自己的FileSystemFileHandle类然后将其作为句柄传递,是否有可能?
$('.save').click(function() {
saveToFile('from website');
});
async function saveToFile(content) {
const opts = {
type: 'save-file',
accepts: [
{
description: 'Text File',
extension: ['txt'],
mimeType: ['text/plain'],
}
]
}
const handle = await window.chooseFileSystemEntries(opts); // don't to that
// create custom FileSystemFileHandle and point to the file location?
const handle = FileSystemFileHandle;
const writable = await handle.createWritable();
await writable.write(content);
await writable.close();
}