Answer Posted / vivek
A sparse file is a type of computer file that attempts to
use file system space more efficiently when the file itself
is mostly empty. This is achieved by not writing data to
disk when it has been allocated but not actually filled
with data. Instead, brief information about these empty
regions is stored, which takes up much less disk space.
These regions are only written to disk at their actual size
when data is written to them; the file system transparently
converts empty sections into blocks filled with zero bytes
when read at runtime. Most modern file systems support
sparse files, including most Unix variants and NTFS. Sparse
files are commonly used for disk images, database
snapshots, log files and in scientific applications.
| Is This Answer Correct ? | 4 Yes | 0 No |
Post New Answer View All Answers
What does typeof return in c?
Can you think of a logic behind the game minesweeper.
Can you add pointers together? Why would you?
What do you know about the use of bit field?
What extern c means?
Can the sizeof operator be used to tell the size of an array passed to a function?
Calculate 1*2*3*____*n using recursive function??
What will be your course of action for a push operation?
Why is sprintf unsafe?
What are the two types of functions in c?
What the different types of arrays in c?
Tell me when is a void pointer used?
How do you use a pointer to a function?
How do I round numbers?
What are the different file extensions involved when programming in C?