在Delphi中獲取系統路徑有多種方法,其中常用的方法是使用SysUtils單元中的特定函數來獲取系統路徑。以下是幾種獲取系統路徑的常用函數:
var
SystemPath: string;
begin
SystemPath := SysUtils.GetSystemDirectory;
ShowMessage('System directory: ' + SystemPath);
end;
var
WindowsPath: string;
begin
WindowsPath := SysUtils.GetWindowsDirectory;
ShowMessage('Windows directory: ' + WindowsPath);
end;
var
CurrentPath: string;
begin
CurrentPath := SysUtils.GetCurrentDirectory;
ShowMessage('Current directory: ' + CurrentPath);
end;
通過這些函數可以方便地獲取系統路徑,根據具體需求選擇合適的函數即可。