- read(long, long) - Method in class Ext2File
-
Reads at most length bytes starting at byte offset startByte from start of file.
- read(long) - Method in class Ext2File
-
Reads at most length bytes, starting from the current file pointer.
- read() - Method in class GroupDescriptor
-
This method reads the group descripor for each block group and adds the offset
of the inode table pointer to the gd_pointer[] array
- read() - Method in class Inode
-
This method will read all the data that is contained in the inode, from the buffer, in which the byte array was parsed
- read() - Method in class Superblock
-
This method will read all the data that is contained in the Superblock,
from the buffer in which the byte array was parsed
- readBlockData(Inode) - Method in class FileInfo
-
This method will read the block pointers values of an inode and if a pointer
points to real data, it will call the appropriate methods to print that data.
- readDblIndirectData(int) - Method in class FileInfo
-
This method will read the double indirect data block and if data exists it will call readIndirectData()
- readHexData(ArrayList<byte[]>) - Method in class FileInfo
-
This method will read byte arrays from a list of byte arrays and print the content in a
readable Hexadecimal format, with 26 hex characters in each line for readability
- readIndirectData(int) - Method in class FileInfo
-
This method will read the indirect data block and if data exists it will call printBlockData()
- readPermissions() - Method in class Inode
-
This method uses bitwise ANDing on FileSystem's i_mode variable value,
to determing what permissions a directory or file has.
- readTrplIndirectData(int) - Method in class FileInfo
-
This method will read the triple indirect data block and if data exists it will call readDblIndirectData()