Design In-Memory File System
Explore how to implement an in-memory file system in JavaScript by simulating core functions such as ls, mkdir, adding content to files, and reading file contents. This lesson helps you understand managing directories and files in a virtual environment while enforcing constraints and lexicographical order.
We'll cover the following...
We'll cover the following...
Statement
Design an in-memory file system. The skeleton for the class FileSystem is provided to you. Simulate the following functions:
-
ls(String path): If path is a file path, return a list that only contains the file’s name. If it’s a directory path, return the list of files and directory names in this directory. Your function should return the output ...