| c# Programming Glossary: path.getfullpathDrag & drop of a dynamically created shortcut http://stackoverflow.com/questions/1935925/drag-drop-of-a-dynamically-created-shortcut  StringCollection files new StringCollection files.Add Path.GetFullPath tmp.lnk shortcut.SetFileDropList files picShortcut.DoDragDrop.. 
 How can I compare (directory) paths in C#? http://stackoverflow.com/questions/2281531/how-can-i-compare-directory-paths-in-c  seems to do the work except for case difference Path.GetFullPath test Path.GetFullPath TEST and trailing slash. So the following.. the work except for case difference Path.GetFullPath test Path.GetFullPath TEST and trailing slash. So the following code should work fine.. So the following code should work fine String.Compare Path.GetFullPath path1 .TrimEnd ' ' Path.GetFullPath path2 .TrimEnd ' ' StringComparison.InvariantCultureIgnoreCase.. 
 c# Check if an executable exists in the windows path http://stackoverflow.com/questions/3855956/c-sharp-check-if-an-executable-exists-in-the-windows-path  GetFullPath string fileName if File.Exists fileName return Path.GetFullPath fileName var values Environment.GetEnvironmentVariable PATH.. 
 Path.Combine absolute with relative path strings http://stackoverflow.com/questions/670566/path-combine-absolute-with-relative-path-strings  IMO when it comes to simple canonicalization. Check out Path.GetFullPath which touches the file system and possibly System.Uri.  share.. 
 How do I change the wallpaper programatically? http://stackoverflow.com/questions/8414635/how-do-i-change-the-wallpaper-programatically  System.Drawing.Image img System.Drawing.Image.FromFile Path.GetFullPath wpaper string tempPath Path.Combine Path.GetTempPath wallpaper.bmp.. 
 |