|
发表于 2014-5-8 18:01:46
|
显示全部楼层
// 取得实体目录。
string strPhysicalDir = Path.Combine(@HostingEnvironment.ApplicationPhysicalPath,"");//基于IIS这里要使用相对路径!
//string strPhysicalDir = @"E:\Ken\My Documents\Projects\Tianya\Tianya.Demo\tools\";//基于文件系统这里要使用绝对路径!
// 取得文件列表。
Computer MyComputer = new Computer();
FileInfo[] DemoWebForms =
MyComputer.FileSystem.GetDirectoryInfo(strPhysicalDir).GetFiles("*.txt");
string AA = "";
foreach (FileInfo DemoWebFormFile in DemoWebForms)
{
AA += DemoWebFormFile.Name+",";
}
添加到集合里面 然后用Radom 随机函数随机出来一个文件
|
|