摘要:
进程 我们可以把计算机中每一个运行的应用程序都当做是一个进程。 而一个进程又是由多个线程组成的。 Process GetProcesses():获得当前程序中所有正在运行的进程 Process[] pros = Process.GetProcesses(); foreach (var item in 阅读全文
摘要:
效果 实现 代码 using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; usin 阅读全文
摘要:
效果 #实现 代码 using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; usi 阅读全文
摘要:
效果 实现 代码 using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.IO; using 阅读全文
摘要:
效果 实现 代码 using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.IO; using 阅读全文
摘要:
效果 实现 代码 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WindowsFormsApp 阅读全文
摘要:
Directory 用于操作文件夹 方法 CreateDirectory():创建文件夹 Directory.CreateDirectory(@"D:\a"); Delete():删除文件夹 Directory.Delete(@"D:\a",true); Move():剪切文件夹 Directory 阅读全文