From 3849ffd111da3b8d30e763bd758753e7713666cd Mon Sep 17 00:00:00 2001 From: Natalia Portillo Date: Tue, 3 Feb 2026 01:28:31 +0000 Subject: [PATCH] [BeOFS] Symbolic links are not supported. --- .../BOFS/{Unimplemented.cs => Unsupported.cs} | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) rename Aaru.Filesystems/BOFS/{Unimplemented.cs => Unsupported.cs} (89%) diff --git a/Aaru.Filesystems/BOFS/Unimplemented.cs b/Aaru.Filesystems/BOFS/Unsupported.cs similarity index 89% rename from Aaru.Filesystems/BOFS/Unimplemented.cs rename to Aaru.Filesystems/BOFS/Unsupported.cs index df4f5bb75..cc7863ff2 100644 --- a/Aaru.Filesystems/BOFS/Unimplemented.cs +++ b/Aaru.Filesystems/BOFS/Unsupported.cs @@ -2,7 +2,7 @@ // Aaru Data Preservation Suite // ---------------------------------------------------------------------------- // -// Filename : Unimplemented.cs +// Filename : Unsupported.cs // Author(s) : Natalia Portillo // // Component : BeOS old filesystem plugin. @@ -34,5 +34,10 @@ namespace Aaru.Filesystems; public sealed partial class BOFS { /// - public ErrorNumber ReadLink(string path, out string dest) => throw new NotImplementedException(); + public ErrorNumber ReadLink(string path, out string dest) + { + dest = null; + + return ErrorNumber.NotSupported; + } } \ No newline at end of file