deno/js/file_info.ts

92 lines
2.8 KiB
TypeScript
Raw Normal View History

2019-01-21 19:03:30 +00:00
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
2019-08-26 14:18:42 +00:00
import { StatResponse } from "./stat";
2018-10-03 21:56:56 +00:00
2018-10-14 20:29:50 +00:00
/** A FileInfo describes a file and is returned by `stat`, `lstat`,
2018-10-03 21:56:56 +00:00
* `statSync`, `lstatSync`.
*/
export interface FileInfo {
/** The size of the file, in bytes. */
len: number;
2018-10-14 20:29:50 +00:00
/** The last modification time of the file. This corresponds to the `mtime`
2018-10-03 21:56:56 +00:00
* field from `stat` on Unix and `ftLastWriteTime` on Windows. This may not
* be available on all platforms.
*/
modified: number | null;
2018-10-14 20:29:50 +00:00
/** The last access time of the file. This corresponds to the `atime`
2018-10-03 21:56:56 +00:00
* field from `stat` on Unix and `ftLastAccessTime` on Windows. This may not
* be available on all platforms.
*/
accessed: number | null;
2018-10-14 20:29:50 +00:00
/** The last access time of the file. This corresponds to the `birthtime`
2018-10-03 21:56:56 +00:00
* field from `stat` on Unix and `ftCreationTime` on Windows. This may not
* be available on all platforms.
*/
created: number | null;
2018-10-14 20:29:50 +00:00
/** The underlying raw st_mode bits that contain the standard Unix permissions
2018-10-03 21:56:56 +00:00
* for this file/directory. TODO Match behavior with Go on windows for mode.
*/
mode: number | null;
2019-05-08 20:12:16 +00:00
/** The file or directory name. */
2018-10-03 21:56:56 +00:00
name: string | null;
2018-10-14 20:29:50 +00:00
/** Returns whether this is info for a regular file. This result is mutually
2018-10-03 21:56:56 +00:00
* exclusive to `FileInfo.isDirectory` and `FileInfo.isSymlink`.
*/
isFile(): boolean;
2018-10-14 20:29:50 +00:00
/** Returns whether this is info for a regular directory. This result is
2018-10-03 21:56:56 +00:00
* mutually exclusive to `FileInfo.isFile` and `FileInfo.isSymlink`.
*/
isDirectory(): boolean;
2018-10-14 20:29:50 +00:00
/** Returns whether this is info for a symlink. This result is
2018-10-03 21:56:56 +00:00
* mutually exclusive to `FileInfo.isFile` and `FileInfo.isDirectory`.
*/
isSymlink(): boolean;
}
// @internal
2018-10-03 21:56:56 +00:00
export class FileInfoImpl implements FileInfo {
2018-10-22 19:16:15 +00:00
private readonly _isFile: boolean;
private readonly _isSymlink: boolean;
2018-10-03 21:56:56 +00:00
len: number;
modified: number | null;
accessed: number | null;
created: number | null;
mode: number | null;
name: string | null;
/* @internal */
2019-08-26 14:18:42 +00:00
constructor(private _res: StatResponse) {
const modified = this._res.modified;
const accessed = this._res.accessed;
const created = this._res.created;
const hasMode = this._res.hasMode;
const mode = this._res.mode; // negative for invalid mode (Windows)
const name = this._res.name;
2018-10-03 21:56:56 +00:00
2019-08-26 14:18:42 +00:00
this._isFile = this._res.isFile;
this._isSymlink = this._res.isSymlink;
this.len = this._res.len;
2018-10-03 21:56:56 +00:00
this.modified = modified ? modified : null;
this.accessed = accessed ? accessed : null;
this.created = created ? created : null;
// null on Windows
this.mode = hasMode ? mode : null;
this.name = name ? name : null;
}
isFile(): boolean {
2018-10-03 21:56:56 +00:00
return this._isFile;
}
isDirectory(): boolean {
2018-10-03 21:56:56 +00:00
return !this._isFile && !this._isSymlink;
}
isSymlink(): boolean {
2018-10-03 21:56:56 +00:00
return this._isSymlink;
}
}