|
@@ -27,9 +27,10 @@ func main() {
|
|
if strings.HasPrefix(deviceFile.Name(), "sd") && len(deviceFile.Name()) > 3 {
|
|
if strings.HasPrefix(deviceFile.Name(), "sd") && len(deviceFile.Name()) > 3 {
|
|
continue
|
|
continue
|
|
}
|
|
}
|
|
- if strings.HasPrefix(deviceFile.Name(), "nvme") && strings.Contains(deviceFile.Name()[4:], "p") {
|
|
|
|
|
|
+ if strings.HasPrefix(deviceFile.Name(), "nvme") && len(deviceFile.Name()) > 5 {
|
|
continue
|
|
continue
|
|
}
|
|
}
|
|
|
|
+
|
|
fullPath := "/dev/" + deviceFile.Name()
|
|
fullPath := "/dev/" + deviceFile.Name()
|
|
fmt.Println(fullPath)
|
|
fmt.Println(fullPath)
|
|
|
|
|