Esempio n. 1
0
 //Returns the location of the folder the chuncks should go in.
 public static string MakeChunkFolderPath(ManifestEntry entry)
 {
     return(ChunkDirectory + entry.File);
 }
Esempio n. 2
0
        //Returns the location of the file on disk.
        public static string MakeDataPath(ManifestEntry entry)
        {
            var thing = DataDirectory + entry.File;

            return(thing);
        }