When I compile my application under Delphi 2006 I get the following warning [Pascal Warning]- W1002 Symbol \'FileSetDate\' is specific to a platform
What must I do to s
Although the answer of DR solves the warning, it is not the correct solution.
You should use the platform independent version of FileSetDate:
function FileSetDate(const FileName: string; Age: Integer): Integer; overload;
Also in SysUtils.