hsr//////////////////////////////////////////
GetWindowsDirectory함수를 써보세요.
이 종류를 help에서 찾으면 시스템 디렉토리를 구할수 있는 함수들이 있습니다.
var
Path: array [0..260] of Char;
begin
GetWindowsDirectory(Path, Sizeof(Path));
환경변수로 설치된 프로그램이 사용하는 폴더를 찾으려면
GetEnvironmentVariable('인자')를 사용하세요
GetWindowsDirectory함수를 써보세요.
이 종류를 help에서 찾으면 시스템 디렉토리를 구할수 있는 함수들이 있습니다.
var
Path: array [0..260] of Char;
begin
GetWindowsDirectory(Path, Sizeof(Path));
환경변수로 설치된 프로그램이 사용하는 폴더를 찾으려면
GetEnvironmentVariable('인자')를 사용하세요