mirror of
https://github.com/rclone/rclone.git
synced 2024-12-04 06:16:39 +01:00
15 lines
179 B
Go
15 lines
179 B
Go
|
package httpclient
|
||
|
|
||
|
import (
|
||
|
"net/url"
|
||
|
"strings"
|
||
|
)
|
||
|
|
||
|
func EscapePath(path string) string {
|
||
|
u := url.URL{
|
||
|
Path: path,
|
||
|
}
|
||
|
|
||
|
return strings.Replace(u.String(), "+", "%2b", -1)
|
||
|
}
|