actual path is used for internal only. any link for user should come from remoteFullPath
(path string, isFolder bool)
| 39 | |
| 40 | // actual path is used for internal only. any link for user should come from remoteFullPath |
| 41 | func (d *Crypt) getActualPathForRemote(path string, isFolder bool) (string, error) { |
| 42 | _, remoteActualPath, err := op.GetStorageAndActualPath(d.getPathForRemote(path, isFolder)) |
| 43 | return remoteActualPath, err |
| 44 | } |