わかりましたので、js を使用して Web オペレーティング システムをプログラミングしています。ファイルシステムに JSON を使用しています。JSONに関するチュートリアルをオンラインで約1週間探していますが、WebページからのJSONファイルの書き込みに関するものは何も見つかりません. 既存のオブジェクトを変更するのではなく、ファイルに新しいオブジェクトを作成する必要があります。これまでの私のコードは次のとおりです。
{"/": {
"Users/": {
"Guest/": {
"bla.txt": {
"content":
"This is a test text file"
}
},
"Admin/": {
"html.html": {
"content":
"yo"
}
}
},
"bin/": {
"ls": {
"man": "Lists the contents of a directory a files<br/>Usage: ls"
},
"cd": {
"man": "Changes your directory<br/>Usage: cd <directory>"
},
"fun": {
"man": "outputs a word an amount of times<br/>Usage: fun <word> <times>"
},
"help": {
"man": "shows a list of commands<br/>Usage: help"
},
"clear": {
"man": "Clears the terminal<br/>Usage: clear"
},
"cat": {
"man": "prints content of a file<br/>Usage: cat <filename>"
}
},
"usr/": {
"bin/": {
},
"dev/": {
}
}
}}