71656aa940
* #94: Saving the file type of cover art, but there is still some work to do The filename of cover art is hard coded to have the png extension. Need to correct this * #94: Added a TODO * #94: Corrected file extension being saved in the db * Cleanup * Saving databasescripts
10 lines
331 B
C#
10 lines
331 B
C#
namespace Icarus.Constants;
|
|
|
|
public class DirectoryPaths
|
|
{
|
|
public static string CoverArtDirectory => Directory.GetCurrentDirectory() + "/Images/Stock/";
|
|
public static string CoverArtFilename => "CoverArt.png";
|
|
public static string FILENAME_CHARACTERS = "ABCDEF0123456789";
|
|
public static int FILENAME_LENGTH = 25;
|
|
}
|