I'm writing a tool in Rust which needs to vary its functionality depending on whether the current filesystem is an SSD or a traditional hard drive.
The difference at runtime will be that if the files exist on an SSD, more threads will be used to access files versus an HDD, which will only thrash the disk and reduce performance.
I'm primarily interested in Linux, as that is my use case, but welcome any other additions. I also need to do this as a non-root user if possible. Is there a syscall or a filesystem device which will tell me what kind of device I'm on?
Credit goes to @Hackerman:
If it returns 1, the given filesystem is on rotational media.
I have fleshed this concept out into a shell script which reliably determines whether a file is on rotational media or not:
The above works for me both on plain partitions (ie
/dev/sda1
is mounted at a given path) and ondm-crypt
partitions (ie/dev/mapper/crypt
is mounted at a given path). I have not tested it with LVM because I don't have one nearby.Apologies for the Bash not being portable.