HDU_OS_Assignment_2017_SimpleFileSystem
HDU_OS_Assignment_2017_SimpleFileSystem copied to clipboard
杭州电子科技大学操作系统课程设计:简单文件系统的实现/The course design of the operating system of Hangzhou Dianzi University: The Implement of Simple file system
Results
2
HDU_OS_Assignment_2017_SimpleFileSystem issues
Sort by
recently updated
recently updated
newest added
int rewrite_dir(char *dir) { int len = strlen(dir); if (dir[len-1] == '/') --len; int pre = -1; for (int i = 0; i < len; ++i) if (dir[len] == '/')...
in line 427 tid set but not used? 442 should be ```memcpy(buf, blockaddr[tid], BLOCKSIZE);```? 449 should be ```tid = fat1[tid].id;```? could u pls tell me if i were wrong?