mirror of
https://github.com/rclone/rclone.git
synced 2024-11-25 17:57:44 +08:00
13 lines
266 B
Go
13 lines
266 B
Go
|
// +build !windows
|
||
|
|
||
|
package fs
|
||
|
|
||
|
// isDriveLetter returns a bool indicating whether name is a valid
|
||
|
// Windows drive letter
|
||
|
//
|
||
|
// On non windows platforms we don't have drive letters so we always
|
||
|
// return false
|
||
|
func isDriveLetter(name string) bool {
|
||
|
return false
|
||
|
}
|