function getSystemFolder():string;
var
SysDir: array[0..MAX_PATH] of Char; // holds the system directory
begin
{retrieve the system directory and display it}
GetSystemDirectory(SysDir, MAX_PATH);
Result := StrPas(SysDir);
end;
시스템 폴더를 알아내고 싶습니다. 예를 들어, system32 folder의 full path를 알고자 합니다. 컴퓨터마다 C:\windows\system32 일수도 C:\winnt\system32 일수도 D:\windows\system32 일수도 있으니까요.. 현 시스템의 system32 folder의...
이준희
•
2005.05.02 23:02
interface
uses Windows;
function getSystemFolder():string;
var
SysDir: array[0.....
강인규
•
2005.05.02 21:00
<!--CodeS-->
const
MAX_PATH = 255;
var
dir: array [0..MAX_PATH] ...
interface
uses Windows;
function getSystemFolder():string;
var
SysDir: array[0..MAX_PATH] of Char; // holds the system directory
begin
{retrieve the system directory and display it}
GetSystemDirectory(SysDir, MAX_PATH);
Result := StrPas(SysDir);
end;