摘要: string Path = Request.PhysicalApplicationPath + "App_Data" + "\\" + "aaa.mdb"; FileInfo info = new FileInfo( Path ); if( info.Exists ) { Response.Clear(); ... 阅读全文
posted @ 2008-07-11 22:45 Magicam 阅读(290) 评论(0) 推荐(0) 编辑
摘要: 获取本地计算机第一个非光驱,软驱的盘符 using System.Management; protected string GetDiskName() { string DiskName = string.Empty; SelectQuery Disk = new SelectQuery( "Select * From Win32_LogicalDisk"... 阅读全文
posted @ 2008-07-11 17:19 Magicam 阅读(343) 评论(0) 推荐(0) 编辑