Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
string directory = Server.MapPath("Music/Dave");
DirectoryInfo dirInfo = new DirectoryInfo(directory);
FileInfo[] fileInfo = dirInfo.GetFiles("*.mp3");
MusicBean[] beans = new MusicBean[fileInfo.Length];
for (int i = 0; i < fileInfo.Length; i++)
{
beans[i] = new MusicBean();
beans[i].name = fileInfo[i].Name;
beans[i].created = fileInfo[i].CreationTime.ToShortDateString();
beans[i].fileSize = (fileInfo[i].Length / 1024).ToString("# ###") + "kb";
beans[i].musicURL = @"Music/Dave/" + fileInfo[i].Name;
}