mirror of
https://github.com/rclone/rclone
synced 2024-10-31 20:16:42 +01:00
e92cb9e8f8
Add --network-mode option to activate mounting as network drive without having to set volume prefix. Add support for automatic drive letter assignment (not specific to network drive mounting). Allow full network share unc path in --volname, which will also implicitely activate network drive mounting. Allow full network share unc path as mountpoint, which will also implicitely activate network drive mounting, and the specified path will be used as volume prefix and the remote will be mounted on an automatically assigned drive letter instead.
9 lines
153 B
Go
9 lines
153 B
Go
//+build !windows
|
|
|
|
package file
|
|
|
|
// FindUnusedDriveLetter does nothing except on Windows.
|
|
func FindUnusedDriveLetter() (driveLetter uint8) {
|
|
return 0
|
|
}
|