import { seek } from "https://deno.land/x/deno@v0.28.0/cli/js/files.ts";
Seek a file ID to the given offset under mode given by whence
.
const file = await Deno.open("/foo/bar.txt");
await Deno.seek(file.rid, 0, 0);
import { seek } from "https://deno.land/x/deno@v0.28.0/cli/js/files.ts";
Seek a file ID to the given offset under mode given by whence
.
const file = await Deno.open("/foo/bar.txt");
await Deno.seek(file.rid, 0, 0);