예제 #1
0
파일: main.cpp 프로젝트: susliks/os
int main()
{
	init();//初始化磁盘
	FileSystem *fs = new FileSystem;
	char inputBuf[MaxCharLen];
	fs->save();
	while (true)
	{
		string command;
		printf("%s>", fs->getCurPath().c_str());
		cin >> inputBuf;
		command = inputBuf;
		if (command == "cd")
			fs->op_cd();
		else if (command == "dir")
			fs->op_dir();
		else if (command == "md" || command == "mkdir")
			fs->op_mkdir();
		else if (command == "mkfile")
			fs->op_mkfile();
		else if (command == "rd" || command == "rmdir")
			fs->op_rmdir();
		else if (command == "del")
			fs->op_delfile();
		/*else if (command == "open")
			fs->op_open();
		else if (command == "close")
			fs->op_close();*/
		else if (command == "exit")
			break;
		else
			fgets(inputBuf, MaxCharLen, stdin);	//清空输入行
		
		fs->save();
		printf("\n");
	}
	delete fs;
	return 0;
}