On Feb 16, 2012, at 5:15 PM, cmdrew wrote:
> How can I get the actual name of the file from the URI?
`dataUri` should be a string like "file:///path/to/FileName.png", so dataUri.Substring(dataUri.LastIndexOf('/')+1) should give you the filename.
- Jon