搜索资源列表
filesystem_C
- 此版本是在网上广为流传的 二级文件系统 基础上制作的.重新编写了块操作等模块,修正了N多BUG. 实现的命令有 ls-列目录 md-创建目录 cd-进入子目录 mf-创建文件 cat-显示文件内容 del-删除文件 vi-简单文件编辑 reg-注册用户管理 q-退出 超级雷电 -this version on the Internet widely circulated two file system on the basis of production. Rewrite
OSmulu
- MDO1铺设好了数据结构和主调函数。但是发现在输出显示目录和添加删除时比较麻烦,所以想改用结构体,双向链表和栈实现。 MDO2实现了用栈显示出当前路径 MDO3实现了cmd中输入路径名成查找到当前目录的问题。各种情况和cmd的路径一样。 MDO4实现了MD,MK,RD,DEL功能,但是只能在当前目录下操作创建删除文件夹。 -MDO1 laying of a good data structure and function of melody. However found in t
xiaoxingcaozuoxitong
- 一个实现基本目录操作的操作系统,实现新建、删除、更改文件或目录-achieve a basic directory operation of the operating system, achieving new, delete, change file or directory
os2design4file
- 设计并实现一个多用户多级目录结构的文件系统。该系统必须具备下列功能:目录操作,文件操作-design and realization of a multi-user multi-level directory structure of the file system. The system must have the following functions : directory operations, file manipulation
dfop
- 磁盘文件操作 已在磁盘上划分一定空间文件filesys.dat来模拟真实磁盘,现在要在该模拟磁盘中建立文件creatfile(),删除文件del(),创建目录md(),删除目录rd(),文件修改内容并保存edit(),上下级目录访问cd(),cd..(),cd\\(),文件复制copy(),这些函数怎么写啊?请大家帮帮忙!写好后可发到邮箱jsj5219@163.com 部分代码:-disk file operations are classified in a certain di
2
- 模拟采用二级目录结构的磁盘文件系统中文件操作
linuxtrycode
- linux文件系统试验 一、实验目的 学习有关linux文件管理程序如何组织的知识,为简化的文件系统设计并实现一组目录操作。实验中使用软盘的fat12格式,设计一个程序可以对这种格式的磁盘进行一组目录操作。 实验使用了部分linux的系统调用,比如说open() sleek() read() write()几个调用。通过此实验来对linux的文件系统的管理有进一步的理解。 二、实验要求 主要实现三个功能:一 读取磁盘目录的目录列表。(命令输入 ls )
test6
- 模拟文件系统实现的基本功能,了解文件系统的基本结构和文件的各种管理方法。 1. 采用二级目录结构实现磁盘文件操作:假定文件采用的物理结构为连续结构。编写程序模拟一个简单的文件系统,实现文件系统的管理和控制功能
用login二级目录的文件系统
- 这个程序是模拟采用二级目录结构的磁盘文件系统中的文件操作,它可以实现对文件的一些基本管理,如:读、写、删除文件等。通过这个程序可掌握文件子系统的原理,加深对二级目录结构的文件系统中用户管理、文件管理、目录管理的理解,并用程序实现对文件子系统的模拟。-the procedure is simulated using two disk directory structure of the file system file manipulation, it can be achieved on som
IFS.zip
- 操作系统实验:模拟采用二级目录结构的磁盘文件系统中的文件操作。程序简单模拟了一个类unix的shell界面,并完成了实验中所要求的具体内容。运行时需注意问题:初始用户名密码为root,登陆后可输入help命令查看命令格式获取帮助。,Operating System Experiment: Simulate file operations for the two-level directory structure in the file system. Should pay attention
文件系统模拟
- 文件系统模拟 模拟采用二级目录结构的磁盘文件系统中的文件操作-Analog simulation of the file system directory structure with the secondary file system disk file operations
os
- 设计一个模拟的多用户多级目录的文件系统,并提供基本命令来模拟这个文件系统的文件操作。用一个文件来模拟用户表,用来记录当前系统中的用户,每一个用户有一张自己的用户目录表,用来记录自己账户下的目录情况,目录表也是用形式保存在硬盘中。用户分普通用户,管理员,超级管理员三种,各用户只可以在自己目录下操作文件,超级管理员可以为新用户分配用户目录,可以设置用户的权限,而管理员只可以为新用户分配用户目录,普通用户则只能在自己的目录下进行文件操作。 用户登陆之后,可以在其用户目录下面进行文件操作,可以新建
jincheng
- 设计目录结构(采用多级目录)以及文件目录项的结构、外存空间的位示图,并编程实现如下要求(本实验未考虑实现文件操作功能)-Design the directory structure (using multi-level directory), and the file directory of the structure of space-bit Out-of-Core that map, and programming to achieve the following requirements
OS
- 操作系统课程设计,模拟UNIX磁盘文件管理系统 • 建立文件存储介质的管理机制 • 建立目录 • 文件系统功能(显示目录、创建、删除、打开、关闭、读、写) • 文件操作接口(显示目录、创建、删除、打开、关闭、读、写)-Operating system, curriculum design, simulation UNIX disk file management system • Create file storage medi
FileSystme
- 操作系统课程设计,通过具体的文件存储空间的管理、文件的物理结构、目录结构和文件操作的实现,加深对文件系统内部功能和实现过程的理解。 -Operating system, curriculum design, through specific file storage space management, document the physical structure, directory structure and file operations to achieve and deepen the
files
- 用C语言写的关于模拟二级目录文件操作,文件的创建,删除,修改文件内容等,操作系统实验-Written using C language on the simulation of two directories and files operations, file creation, delete, modify file contents, the operating system experiment
File_os
- 1、设计一个10个用户的文件系统,每次用户可保存10个文件,一次运行用户可以打开5个文件。 2、程序采用二级文件目录(即设置主目录[MFD])和用户文件目录(UED)。另外,为打开文件设置了运行文件目录(AFD)。 3、为了便于实现,对文件的读写作了简化,在执行读写命令时,只需改读写指针,并不进行实际的读写操作。 4、算法与框图: ①因系统小,文件目录的检索使用了简单的线性搜索。 ②文件保护简单使用了三位保护码:允许读写执行、对应位为 1,对应位为0,则表示不允许读写、执
Document-Management-System
- 文件管理系统 文件管理系统的设计实际上是对Windows资源管理器的模拟和扩展。它通过IO命名空间中相关类实现对磁盘、文件以及目录的访问,在制定的位置新建一个文件或目录、对指定的文件或目录进行删除操作、用相关的应用程序打开指定的文件和对某些特殊文件(如txt文件)进行编辑。-Document management system document management system is actually a simulation of Windows Explorer and expand.
wenjianchunchuguanli
- 文件存储管理:实现对文件的目录创建,删除,以及读写操作-File Storage Management: Implementation of the files to create, delete, and read and write operations
fileoperating
- 操作系统课程设计,文件操作,实现了对文件和目录的重命名,保存,编辑,复制,新建-oprating system experiment about file operation,rename ,copy ,create, read ,write ,print a file or directory