delphi getSys32Path()得到系统System32路径


本文整理自网络,侵删。

 


{得到系统C:\Windows\system32 路径}
//调用 Edit1.text:=getSys32Path();
function getSys32Path():string;
var
  sPath : PCHAR ;
begin
     GetMem(sPath,255);
     GetSystemDirectory(sPath,255);
     Result := sPath;//C:\Windows\system32
end;

相关阅读 >>

Delphi tmsweb core 刷新当前页面

Delphi 清空某个form的控件内容,用tag来判断

Delphi unigui确认对话框

Delphi 禁止用户关闭操作系统

Delphi从内存流加载图片

Delphi 取得固定长度的随机字符串

Delphi 10.3 中安装程序自动升级插件autoupgrader_pro_v5.2

Delphi 字符转16进制、16进制转字符

Delphi 拷贝edit编辑框中的内容

Delphi 模拟按键的一些误解

更多相关阅读请进入《Delphi》频道 >>



打赏

取消

感谢您的支持,我会继续努力的!

扫码支持
扫码打赏,您说多少就多少

打开支付宝扫一扫,即可进行扫码打赏哦

分享从这里开始,精彩与您同在

评论

管理员已关闭评论功能...