Get File Name from URL (C#/.NET) - the jackol's den
To get the file name from a URL like http://www.thejackol.com/files/project.exe: string URL = "http://www.thejackol.com/files/project.exe"; string FileName = URL.Substring(URL.LastIndexOf("/") + 1, (URL.Length - URL.LastIndexOf("/") - 1)); FileName will n...