gpt4 book ai didi

typescript - 如何使用 Deno 检查文件或目录是否存在?

转载 作者:行者123 更新时间:2023-12-04 11:10:16 50 4
gpt4 key购买 nike

Deno TypeScript 运行时有 built-in functions ,但它们都没有解决检查文件或目录是否存在的问题。如何检查文件或目录是否存在?

最佳答案

这里也有标准库实现 https://deno.land/std/fs/mod.ts

import {existsSync } from "https://deno.land/std/fs/mod.ts";

const isPathExist = existsSync(filePath)
console.log(isPathExist)
如果路径存在,则此代码将打印 true,否则将打印 false。
这是异步实现
import {exists} from "https://deno.land/std/fs/mod.ts"

exists(filePath).then((result : boolean) => console.log(result))
确保使用不稳定标志运行 deno 并像这样授予程序对该文件的访问权限
deno run --unstable  --allow-read={filePath} index.ts

关于typescript - 如何使用 Deno 检查文件或目录是否存在?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56658114/

50 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com