deno.land / std@0.224.0 / fs / _create_walk_entry.ts

_create_walk_entry.ts
نووسراو ببینە
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.// Copyright the Browserify authors. MIT License.
import { basename } from "../path/basename.ts";import { normalize } from "../path/normalize.ts";import { toPathString } from "./_to_path_string.ts";
/** * Walk entry for {@linkcode walk}, {@linkcode walkSync}, * {@linkcode expandGlob} and {@linkcode expandGlobSync}. */export interface WalkEntry extends Deno.DirEntry { /** Full path of the entry. */ path: string;}
/** Create {@linkcode WalkEntry} for the `path` synchronously. */export function createWalkEntrySync(path: string | URL): WalkEntry { path = toPathString(path); path = normalize(path); const name = basename(path); const info = Deno.statSync(path); return { path, name, isFile: info.isFile, isDirectory: info.isDirectory, isSymlink: info.isSymlink, };}
/** Create {@linkcode WalkEntry} for the `path` asynchronously. */export async function createWalkEntry(path: string | URL): Promise<WalkEntry> { path = toPathString(path); path = normalize(path); const name = basename(path); const info = await Deno.stat(path); return { path, name, isFile: info.isFile, isDirectory: info.isDirectory, isSymlink: info.isSymlink, };}
std

Version Info

Tagged at
3 weeks ago