C# Class FileSystem.FileManager

Inheritance: System.MarshalByRefObject
Mostra file Open project: stachupl/MNFS Class Usage Examples

Public Methods

Method Description
FileManager ( ) : System
append ( string name, string toAppend ) : bool
cat ( string name ) : ArrayList
create ( ) : string
read ( string name, int i, int j ) : string[]
remove ( string fileName ) : bool
write ( string name, string toWrite ) : bool

Method Details

FileManager() public method

public FileManager ( ) : System
return System

append() public method

public append ( string name, string toAppend ) : bool
name string
toAppend string
return bool

cat() public method

public cat ( string name ) : ArrayList
name string
return System.Collections.ArrayList

create() public method

public create ( ) : string
return string

read() public method

public read ( string name, int i, int j ) : string[]
name string
i int
j int
return string[]

remove() public method

public remove ( string fileName ) : bool
fileName string
return bool

write() public method

public write ( string name, string toWrite ) : bool
name string
toWrite string
return bool