ファイルの情報を取得する
ファイルの情報を取得するには
Deno.stat()
もしくは
Deno.lstat()
を使います
https://deno.land/typedoc/index.html#stat
https://deno.land/typedoc/index.html#lstat
両者の違いは、
stat
はシンボリックリンクを辿り、
lstat
は辿りません
code:sh
deno run --allow-read
https://scrapbox.io/api/code/deno-ja/ファイルの情報を取得する/sample.ts
filepath
filepath
に調べたいファイルパスを入れて実行してください
code:sample.ts
const file = await Deno.stat(Deno.args
0
);
console.log(file);