Point is HOW do I obtain that Recycle folder's Full Path including Drive letter
The recyclebin actually exists on ALL drives -- if you delete something from C:\ it ends up in the recyclebin folder on your C: drive, if you delete it from Z: it ends up in the recycle bin folder on your Z: drive.
The reason: Moving a file from one folder is just a matter of updating the file allocation table to point the filehandle to the new folder which is near-instantanious, while moving it to a different drive would entail making a full copy of the file which can take a LONG time for large files.
I'm sure there is a windows API or registry setting that will give you the directory name for the recycle bin. (which is important, since IIRc there are slight variations in the folder name across different windows versions, not to mention that it is likely called differently in all the non-English windows versions)
Last but not least: You can also *disable* the recycle bin on some (or all) drives, so don't just assume that it's always there.