1
0
silverbullet/packages/plugos-syscall/fs.ts

37 lines
856 B
TypeScript
Raw Normal View History

import { syscall } from "./syscall";
export type FileMeta = {
name: string;
lastModified: number;
};
export async function readFile(
2022-09-05 14:15:01 +00:00
path: string,
encoding: "utf8" | "dataurl" = "utf8"
): Promise<{ text: string; meta: FileMeta }> {
2022-09-05 14:15:01 +00:00
return syscall("fs.readFile", path, encoding);
}
export async function getFileMeta(path: string): Promise<FileMeta> {
return syscall("fs.getFileMeta", path);
}
2022-09-05 14:15:01 +00:00
export async function writeFile(
path: string,
text: string,
encoding: "utf8" | "dataurl" = "utf8"
): Promise<FileMeta> {
return syscall("fs.writeFile", path, text, encoding);
}
export async function deleteFile(path: string): Promise<void> {
return syscall("fs.deleteFile", path);
}
export async function listFiles(
dirName: string,
recursive = false
): Promise<FileMeta[]> {
return syscall("fs.listFiles", dirName, recursive);
}