(src, dst string)
| 200 | } |
| 201 | |
| 202 | func (h *fileHandler) Rename(src, dst string) error { |
| 203 | src = h.JoinPath(src) |
| 204 | dst = h.JoinPath(dst) |
| 205 | return os.Rename(src, dst) |
| 206 | } |
| 207 | |
| 208 | // pathExist checks if a path (file or dir) is found at target. |
| 209 | // Returns true if found, false otherwise. |