0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-10-31 09:14:20 -04:00
denoland-deno/cli/js/stat.ts

81 lines
2.2 KiB
TypeScript
Raw Normal View History

2020-01-02 15:13:47 -05:00
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
import { sendSync, sendAsync } from "./dispatch_json.ts";
import { FileInfo, FileInfoImpl } from "./file_info.ts";
2018-09-11 15:38:53 -04:00
2019-08-26 10:18:42 -04:00
export interface StatResponse {
isFile: boolean;
isSymlink: boolean;
len: number;
modified: number;
accessed: number;
created: number;
name: string | null;
// Unix only members
dev: number;
ino: number;
mode: number;
nlink: number;
uid: number;
gid: number;
rdev: number;
blksize: number;
blocks: number;
}
2018-10-14 16:29:50 -04:00
/** Queries the file system for information on the path provided. If the given
* path is a symlink information about the symlink will be returned.
2018-09-11 15:38:53 -04:00
*
* const fileInfo = await Deno.lstat("hello.txt");
2018-10-14 16:29:50 -04:00
* assert(fileInfo.isFile());
2018-09-11 15:38:53 -04:00
*/
export async function lstat(filename: string): Promise<FileInfo> {
2020-02-25 09:14:27 -05:00
const res = (await sendAsync("op_stat", {
2019-08-26 10:18:42 -04:00
filename,
lstat: true
})) as StatResponse;
return new FileInfoImpl(res);
2018-09-11 15:38:53 -04:00
}
2018-10-14 16:29:50 -04:00
/** Queries the file system for information on the path provided synchronously.
* If the given path is a symlink information about the symlink will be
* returned.
2018-09-11 15:38:53 -04:00
*
* const fileInfo = Deno.lstatSync("hello.txt");
2018-10-14 16:29:50 -04:00
* assert(fileInfo.isFile());
2018-09-11 15:38:53 -04:00
*/
export function lstatSync(filename: string): FileInfo {
2020-02-25 09:14:27 -05:00
const res = sendSync("op_stat", {
2019-08-26 10:18:42 -04:00
filename,
lstat: true
}) as StatResponse;
return new FileInfoImpl(res);
2018-09-11 15:38:53 -04:00
}
2018-10-14 16:29:50 -04:00
/** Queries the file system for information on the path provided. `stat` Will
* always follow symlinks.
2018-09-11 15:38:53 -04:00
*
* const fileInfo = await Deno.stat("hello.txt");
2018-10-14 16:29:50 -04:00
* assert(fileInfo.isFile());
2018-09-11 15:38:53 -04:00
*/
export async function stat(filename: string): Promise<FileInfo> {
2020-02-25 09:14:27 -05:00
const res = (await sendAsync("op_stat", {
2019-08-26 10:18:42 -04:00
filename,
lstat: false
})) as StatResponse;
return new FileInfoImpl(res);
2018-09-11 15:38:53 -04:00
}
2018-10-14 16:29:50 -04:00
/** Queries the file system for information on the path provided synchronously.
2018-09-11 15:38:53 -04:00
* `statSync` Will always follow symlinks.
*
* const fileInfo = Deno.statSync("hello.txt");
2018-10-14 16:29:50 -04:00
* assert(fileInfo.isFile());
2018-09-11 15:38:53 -04:00
*/
export function statSync(filename: string): FileInfo {
2020-02-25 09:14:27 -05:00
const res = sendSync("op_stat", {
2019-08-26 10:18:42 -04:00
filename,
lstat: false
}) as StatResponse;
return new FileInfoImpl(res);
2018-09-11 15:38:53 -04:00
}