In Java 7 a new file api was introduced. This new file api is represented by the java.nio
package. With the old api java.io
it was possible to concatenate two file/folder easily. Let’s have a look how this works with the java.nio.file.Path
Continue reading
Tag Archives: file system
Checking data consistency – 2 – smartmontools
In order to ensure the consistency of a data storage, a regularly check is recommended. This might be checking a hdd, sdd, usb stick, flash card (sd,cf). In general there is only a basic check by the operating system. This check is insufficient to guarantee no data loss. When using Linux there are some small tools that provide an enhanced check for data consistency. This second part describes the usage of smartmontools. Continue reading
Checking data consistency – 1 – badblocks
In order to ensure the consistency of a data storage a regularly check is recommended. This might be checking a hdd, sdd, usb stick, flash card (sd,cf). In general there is only a basic check by the operating system. This check is insufficient to guarantee no data loss. When using Linux there are some small tools that provide an enhanced check for data consistency. This is the first part that describes the usage of badblocks. Continue reading