Delphi获取windowsSystem目录路径,这个比较简单,觉得没啥用,只是可以练习一下GetSystemDirectory函数如何使用,下面分享出核心的代码,完整代码需要您下载哦:   begin   GetMem(SysDir,255);   GetSystemDirectory(SysDir,255);   Edit1.Text:=SysDir;   end;