Skip to content
Snippets Groups Projects
Commit cb28d2d9 authored by felmer's avatar felmer
Browse files

SSDM-12929: readSymbolicLink throws a NoSuchFileException (instead of...

SSDM-12929: readSymbolicLink throws a NoSuchFileException (instead of UnsupportedOperationException) in order to be translated into a status the (S)FTP client can deal with.
parent c3125cd4
No related branches found
No related tags found
1 merge request!40SSDM-13578 : 2PT : Database and V3 Implementation - include the new AFS "free"...
......@@ -29,6 +29,7 @@ import java.nio.file.DirectoryStream.Filter;
import java.nio.file.FileStore;
import java.nio.file.FileSystem;
import java.nio.file.LinkOption;
import java.nio.file.NoSuchFileException;
import java.nio.file.OpenOption;
import java.nio.file.Path;
import java.nio.file.ProviderMismatchException;
......@@ -484,6 +485,12 @@ public class FtpServer implements FileSystemFactory, org.apache.sshd.common.file
this.fileSystemView = fileSystemView;
}
@Override
public Path readSymbolicLink(Path link) throws IOException
{
throw new NoSuchFileException("Symbolic links are not supported: " + link);
}
@Override
public String getScheme()
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment