mirror of https://github.com/ppy/osu
Rename to LegacyDirectoryArchiveReader
This commit is contained in:
parent
dc31736db7
commit
0982508d26
|
@ -485,7 +485,7 @@ private ArchiveReader getReaderFrom(string path)
|
||||||
if (ZipUtils.IsZipArchive(path))
|
if (ZipUtils.IsZipArchive(path))
|
||||||
return new ZipArchiveReader(File.Open(path, FileMode.Open, FileAccess.Read, FileShare.Read), Path.GetFileName(path));
|
return new ZipArchiveReader(File.Open(path, FileMode.Open, FileAccess.Read, FileShare.Read), Path.GetFileName(path));
|
||||||
if (Directory.Exists(path))
|
if (Directory.Exists(path))
|
||||||
return new LegacyFilesystemReader(path);
|
return new LegacyDirectoryArchiveReader(path);
|
||||||
throw new InvalidFormatException($"{path} is not a valid archive");
|
throw new InvalidFormatException($"{path} is not a valid archive");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -8,13 +8,13 @@
|
||||||
namespace osu.Game.IO.Archives
|
namespace osu.Game.IO.Archives
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Reads an extracted legacy beatmap from disk.
|
/// Reads an archive from a directory on disk.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public class LegacyFilesystemReader : ArchiveReader
|
public class LegacyDirectoryArchiveReader : ArchiveReader
|
||||||
{
|
{
|
||||||
private readonly string path;
|
private readonly string path;
|
||||||
|
|
||||||
public LegacyFilesystemReader(string path)
|
public LegacyDirectoryArchiveReader(string path)
|
||||||
: base(Path.GetFileName(path))
|
: base(Path.GetFileName(path))
|
||||||
{
|
{
|
||||||
// re-get full path to standardise with Directory.GetFiles return values below.
|
// re-get full path to standardise with Directory.GetFiles return values below.
|
Loading…
Reference in New Issue