Hello
File Storage
The File Storage user is a natural person, which is easy to understand. All the data in a computer is 0 and 1, and the string of 01s stored on the hardware medium is completely unrecognizable and unmanageable.
Data on storage media is organized into a data structure in the format of directory-subdirectory-file. This data structure is used to find, add, modify, and delete data in the file system. For example, NTFS.
Block Storage
A traditional file system is a hardware medium that directly accesses data. The media is not concerned about the organization and structure of the data, so it is the simplest way to organize data: All data is divided into blocks of a fixed size, and each block is assigned a number for address.
Object Storage
Object storage is between block storage and file storage. Although the tree structure and path access mode of File Storages are easy to understand, remember, and access, the computer needs to break down the path, and then search down the path level by level to find the required file. This is unnecessary and wastes performance for applications.