Deno.create (path: string | URL): Promise<file>
如果不存在则创建文件,或者将其截断并解析为Deno.File的实例。
原文: Creates a file if none exists or truncates an existing file and resolves to an instance of Deno.File.
path : string | URL
原文:
path : string | URL
Promise<file>
原文: Promise<file>
const file = await Deno.create("/foo/bar.txt");
需要提供 allow-read 和 allow-write 权限。
原文:
Requires allow-read and allow-write permission.