示例#1
0
        internal static List <MusicFile> DeserializeFilesFromJSON(string _fullPath, string _fileName)
        {
            Dictionary <string, List <MusicFile> > retVal = new Dictionary <string, List <MusicFile> >();

            if (DiskIO.IsFileExist(_fullPath, _fileName))
            {
                retVal = DiskIO.DeserializeTracksFromFile(_fullPath, _fileName);
            }
            return(retVal["tracks"]);
        }