摘要:
namespace ConsoleApplication1 { public class Configuration { Collection groups = new Collection(); public Collection Groups { get { return groups; } ... 阅读全文
2008年7月25日 #
摘要:
//获取新的 Process 组件并将其与当前活动的进程关联的主模块的完整路径,包含文件名(进程名)。 string str = System.Diagnostics.Process.GetCurrentProcess().MainModule.FileName; result: X:\xxx\xxx\xxx.exe (.exe文件所在的目录 .exe文件名) //获取和设置当前目录(即该进程从... 阅读全文
摘要:
原作出处:http://www.codeproject.com/useritems/tips.asp?df=100 一..Net Framework 1. 如何获得系统文件夹 使用System.Envioment类的GetFolderPath方法;例如: Environment.GetFolderPath( Environment.SpecialFolder.Personal ) 2. 如何获... 阅读全文