代码搜索:Filesystem
找到约 7,034 项符合「Filesystem」的源代码
代码结果 7,034
www.eeworm.com/read/402081/11543267
ncb filesystem.ncb
www.eeworm.com/read/402081/11543268
dsw filesystem.dsw
Microsoft Developer Studio Workspace File, Format Version 6.00
# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE!
###############################################################################
www.eeworm.com/read/402081/11543270
opt filesystem.opt
www.eeworm.com/read/402081/11543271
plg filesystem.plg
Build Log
--------------------Configuration: FileSystem - Win32 Debug--------------------
Command Lines
Results
FileSystem.exe
www.eeworm.com/read/402081/11543272
h filesystem.h
class FileSystem
{
public :
FileSystem();
~FileSystem();
VRESULT run();
private :
struct node
{
char filename[8]; /*结点名字,即文件或目录名字*/
int
www.eeworm.com/read/402081/11543274
dsp filesystem.dsp
# Microsoft Developer Studio Project File - Name="FileSystem" - Package Owner=
# Microsoft Developer Studio Generated Build File, Format Version 6.00
# ** DO NOT EDIT **
# TARGTYPE "Win32 (x86
www.eeworm.com/read/400815/11568178
cpp filesystem.cpp
#include "FileSystem.h"
/* 函数介绍:寻找第一个空白的文件块ID */
unsigned FindBlankFileBlockId()
{
unsigned char c;
for (unsigned i = 0; i < FS.bm.BitMapLen / 8; i++)
{
c = FS.bm.BMStart[i] | 0x7F;
i
www.eeworm.com/read/400815/11568180
h filesystem.h
#ifndef _FILESYSTEM_H_
#define _FILESYSTEM_H_
#include
#include
#include
#include
#include
const unsigned FILESYSCAP = 1024 * 1024; //模拟
www.eeworm.com/read/400815/11568181
dsp filesystem.dsp
# Microsoft Developer Studio Project File - Name="FileSystem" - Package Owner=
# Microsoft Developer Studio Generated Build File, Format Version 6.00
# ** DO NOT EDIT **
# TARGTYPE "Win32 (x86
www.eeworm.com/read/158402/11620827
java filesystem.java
// PART OF THE MACHINE SIMULATION. DO NOT CHANGE.
package nachos.machine;
/**
* A file system that allows the user to create, open, and delete files.
*/
public interface FileSystem {
/**