mirror of
https://github.com/pgsty/minio.git
synced 2026-03-13 22:53:50 +01:00
10 lines
244 B
Go
10 lines
244 B
Go
// +build windows
|
|
|
|
package disk
|
|
|
|
// IsRootDisk returns if diskPath belongs to root-disk, i.e the disk mounted at "/"
|
|
func IsRootDisk(diskPath string) (bool, error) {
|
|
// On windows a disk can never be mounted on a subpath.
|
|
return false, nil
|
|
}
|