2020-01-02 15:13:47 -05:00
|
|
|
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
|
2019-09-02 17:07:11 -04:00
|
|
|
import { sendSync, sendAsync } from "./dispatch_json.ts";
|
|
|
|
import * as dispatch from "./dispatch.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;
|
|
|
|
mode: number;
|
|
|
|
hasMode: boolean; // false on windows
|
|
|
|
name: string | null;
|
2019-03-09 12:30:38 -05:00
|
|
|
}
|
|
|
|
|
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
|
|
|
*
|
2019-02-12 10:08:56 -05: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> {
|
2019-08-26 10:18:42 -04:00
|
|
|
const res = (await sendAsync(dispatch.OP_STAT, {
|
|
|
|
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
|
|
|
*
|
2019-02-12 10:08:56 -05: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 {
|
2019-08-26 10:18:42 -04:00
|
|
|
const res = sendSync(dispatch.OP_STAT, {
|
|
|
|
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
|
|
|
*
|
2019-02-12 10:08:56 -05: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> {
|
2019-08-26 10:18:42 -04:00
|
|
|
const res = (await sendAsync(dispatch.OP_STAT, {
|
|
|
|
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.
|
|
|
|
*
|
2019-02-12 10:08:56 -05:00
|
|
|
* 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 {
|
2019-08-26 10:18:42 -04:00
|
|
|
const res = sendSync(dispatch.OP_STAT, {
|
|
|
|
filename,
|
|
|
|
lstat: false
|
|
|
|
}) as StatResponse;
|
|
|
|
return new FileInfoImpl(res);
|
2018-09-11 15:38:53 -04:00
|
|
|
}
|