How to get absolute path from path with system path variables?

You can use the WinAPI ExpandEnvironmentStrings function: function ExpandEnvStr(const szInput: string): string; const MAXSIZE = 32768; begin SetLength(Result,MAXSIZE); SetLength(Result,ExpandEnvironmentStrings(pchar(szInput), @Result1,length(Result))); end.

Yes, that was the function I was looking for. I just found it myself too, after finally using the right keywords at google. – The_Fox May 14 '10 at 9:58 4 ExpandEnvironmentStrings returns the length including the null character, so you have to substract 1 from the result to return the string without the null terminator.

– The_Fox May 14 '10 at 10:01.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions