On Fri, Jul 23, 2004 at 01:36:45PM -0400, Daniel Carrera wrote: > * To specify a full path I need to identify the OS. Something like: > if (WINDOWS) > { > path = "C:\\temp\myfile"; > } > elsif (LINUX || UNIX) > { > path = "/tmp/myfile"; > } Why not use GetTempPath() or GetTempFileName() from System.IO.Path? -- Malcolm Parsons