What i’m doing is this:
ArrayList files = new ArrayList();
byte[] tempFile;
string image;
foreach (string file in files)
{
image = "/Images/Gallery/" + album.Substring(94) + "/" + file;
tempFile = Directory.GetFiles(image);
}
I can’t convert the string[] Directory.GetFiles(image) to byte[] tempFile.
How can this be done?
please try this:
…