You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I whant to list the contents of "/out" on a sftp server $location is always "/out//".
The path prefixer is set to "/out". And then I list the contents of path "".
So $location = $this->prefixer->prefixPath(rtrim($path, '/')) . '/'; results in "/out//"
So the $filename will be "/filename.txt" and not "filename.txt"
Can this be fixed please?
The text was updated successfully, but these errors were encountered:
When I whant to list the contents of "/out" on a sftp server $location is always "/out//".
The path prefixer is set to "/out". And then I list the contents of path "".
So
$location = $this->prefixer->prefixPath(rtrim($path, '/')) . '/';
results in "/out//"So the $filename will be "/filename.txt" and not "filename.txt"
Can this be fixed please?
The text was updated successfully, but these errors were encountered: