1
0
mirror of https://github.com/minio/minio.git synced 2025-03-24 14:34:16 -04:00
minio/pkg/disk/root-disk-windows.go

10 lines
244 B
Go
Raw Normal View History

// +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
}