String returns a human friendly name for this object
()
| 85 | |
| 86 | // String returns a human friendly name for this object |
| 87 | func (d *Directory) String() string { |
| 88 | if d == nil { |
| 89 | return "<nil>" |
| 90 | } |
| 91 | return d.Remote() |
| 92 | } |
| 93 | |
| 94 | // Remote returns the remote path |
| 95 | func (d *Directory) Remote() string { |