天堂的狼

更好的生活,来自不懈的努力与拼搏,不要仅仅看中结果,拼搏的过程同样是精彩的!

  博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: :: 管理 ::

2010年5月6日

摘要: 1、string path = Environment.GetFolderPath(Environment.SpecialFolder.Programs); 2、string path = Environment.GetEnvironmentVariable("ALLUSERSPROFILE"); 3、[DllImport("shell32.dll")] static extern bool SHGetSpecialFolderPath(IntPtr hwndOwner,[Out] StringBuilder lpszPath, int nFolder, bool fCreate); const int CSIDL_PROGRAMS = 2; // \Windows\Start Menu\Programs StringBuilder pathBuilder = new StringBuilder(260); SHGetSpecialFolderPath(IntPtr.Zero, pathBuilder, CSIDL_PROGRAMS, false); string 阅读全文
posted @ 2010-05-06 13:29 天堂的狼 阅读(1494) 评论(0) 推荐(0) 编辑