Problema: avere l’elenco dei file presenti in una certa directory sul nostro server
Soluzione C#:
DirectoryInfo di = new DirectoryInfo("c:/inetpub/wwwroot/demos");
FileInfo[] rgFiles = di.GetFiles("*.aspx");
foreach(FileInfo fi in rgFiles)
{
Response.Write("
" + fi.Name + "");
}
you wanna read more about what exactly?
they are little tips, but if you want more pls tell me about exactly and i will write ๐
byeeeezzzzzzz