Skip to content

Instantly share code, notes, and snippets.

@im-ikao
Created June 13, 2021 12:47
Show Gist options
  • Save im-ikao/4cb8cb066226d3efecefc38a4d00a6c5 to your computer and use it in GitHub Desktop.
Save im-ikao/4cb8cb066226d3efecefc38a4d00a6c5 to your computer and use it in GitHub Desktop.
[Get Filename]
Uri uri = new Uri(hreflink);
if (uri.IsFile) {
string filename = System.IO.Path.GetFileName(uri.LocalPath);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment