随笔分类 - 代码随手写
摘要:Windows查看TCP连接(netstat) netstat -ant -p TCP 点击查看详细 显示协议统计信息和当前 TCP/IP 网络连接。 NETSTAT [-a] [-b] [-e] [-f] [-n] [-o] [-p proto] [-r] [-s] [-t] [-x] [-y]
阅读全文
摘要://遍历文件 static List<string> TraversalFile(string filePath,string fileExtension) { List<string> returnList = new List<string>(); if (Directory.Exists(filePath) == true) { DirectoryInfo theFolder = new DirectoryInfo(filePath); var fileItem = from file in theFolder.GetFiles() where fil
阅读全文