public void GenerateArtistFolderNames(string input, int artistId, string shouldBe)
        {
            var artistFolder = FolderPathHelper.ArtistPath(Configuration, artistId, input);
            var t            = new DirectoryInfo(Path.Combine(Configuration.LibraryFolder, shouldBe));

            Assert.Equal(t.FullName, artistFolder);
        }
示例#2
0
 public string ArtistFileFolder(IRoadieSettings configuration, bool createIfNotFound = false)
 {
     return(FolderPathHelper.ArtistPath(configuration, Id, SortNameValue, createIfNotFound));
 }
示例#3
0
 public string ArtistFileFolder(IRoadieSettings configuration, string destinationRoot)
 {
     return(FolderPathHelper.ArtistPath(configuration, this.SortNameValue, destinationRoot));
 }