Skip to main content
Module

x/deno2node/src/deps.deno.ts>InMemoryFileSystemHost

Compile your Deno project to run on Node.js.
Go to Latest
class InMemoryFileSystemHost
implements FileSystemHost
import { InMemoryFileSystemHost } from "https://deno.land/x/deno2node@v1.7.1/src/deps.deno.ts";

An implementation of a file system that exists in memory only.

Constructors

new
InMemoryFileSystemHost()

Constructor.

Methods

copy(srcPath: string, destPath: string): Promise<void>
copySync(srcPath: string, destPath: string): void
delete(path: string): Promise<void>
deleteSync(path: string): void
directoryExists(dirPath: string): Promise<boolean>
directoryExistsSync(dirPath: string): boolean
fileExists(filePath: string): Promise<boolean>
fileExistsSync(filePath: string): boolean
glob(patterns: ReadonlyArray<string>): Promise<string[]>
globSync(patterns: ReadonlyArray<string>): string[]
isCaseSensitive(): boolean
mkdir(dirPath: string): Promise<void>
mkdirSync(dirPath: string): void
move(srcPath: string, destPath: string): Promise<void>
moveSync(srcPath: string, destPath: string): void
readDirSync(dirPath: string): RuntimeDirEntry[]
readFile(filePath: string, encoding?: string): Promise<string>
readFileSync(filePath: string, encoding?: string): string
realpathSync(path: string): string
writeFile(filePath: string, fileText: string): Promise<void>
writeFileSync(filePath: string, fileText: string): void