Sup Guys... Been Working on a project and got stumped on this.
Function ExtractFileThings(const FileName:String):String;
BEGIN
ExtractFileName(FileName);
ExtractFilePath(FileName);
ExtractFileExt(FileName);
ExtractFiledir(FileName);
ExtractFileDrive(FileName);
END;
Now im not sure how im gonna do this bu i want it to be able to return all of the Extracts As Writelns.. How would i get around doing this...