File System is a methodology for logically organizing and storing large quantities of data such that the system is easy to manage. a file system consists of files, relationships to other files, as well as the attributes(file type, file name, file size, file owner, file timestamp) of each file.
Directories: for example, the Unix file system is essentially composed of files and directories. Directories are special files that may contain other files. the top-most directory is / (slash), with the directories directly beneath being system directories.
[![enter image description here][1]][1]
/ Root of Linux Filesystem
/bin contains binary executable files that are used by all users on the system.
/boot contains files that are used during the boot process of the system.
/dev contains files that represent devices on the system, such as hard drives, CD-ROM drives, and network interfaces.
/etc contains configuration files for the system and installed software
/home Location for the home directories of regular users
/lib contains library files that are used by programs on the system
/mnt directory is used to mount file systems temporarily, for DVD-Rom, USB flash drive.
/opt contains optional software that is not part of the core system.
/proc short for "process", Kernel pseudo(i.e. virtual) filesystem contains information about running processes and the system itself for example, '/proc/cpuinfo', '/proc/meminfo'.
/root Home directory of super user root
/sbin contains binary executable files that are used by the system administrator.
/tmp Temporary files are kept here
/usr contains a variety of files and directories that are used by users and system administrators, such as documentation, library files, and other resources.
/var contains variable files that change over time, such as log files and spool directories.
/srv directory is typically used to store data that is served by the system, such as web pages, email, and file transfer data.
/proc,/, and/binfrom your examples), so I'm not clear how you want to identify the "difference"./proc,/and/binare directories. They are not "filesystems". Do you perhaps mean you want to identify which directories are also the mount point (root) of their filesystem?