fileSystem = {
let tree = { name: "fs", children: [{ name: "/", children: [] }] };
let location = tree;
commands.forEach((com) => {
if (com.split(" ")[1] == "cd") {
location = location.children.find((l) => l.name == com.split(" ")[2]);
} else if (com.split(" ")[0] == "dir") {
location.children.push({ name: com.split(" ")[2], children: [] });
}
});
return tree;
}