(path string)
| 2432 | } |
| 2433 | |
| 2434 | func basename(path string) string { |
| 2435 | split := strings.Split(strings.ReplaceAll(path, "\\", "/"), "/") |
| 2436 | return split[len(split)-1] |
| 2437 | } |
| 2438 | |
| 2439 | func getRemoteDirectory(path string) string { |
| 2440 | return path + "/remote" |