We all know how to save a text file like so:
TextBox1.SaveFile(@"C:\hello.txt", RichTextBoxStreamType.PlainText);
But I need to save it to an external drive. So I would try:
TextBox1.SaveFile(@"F:\hello.txt", RichTextBoxStreamType.PlainText);
BUT, F: can change to G: or E:, etc... F: usually has a name such as 'MicroSD Card', though.
So how do I save to the Removable Disk 'MicroSD Card' based on it's name?