Hi,
just use \Storage Card\filename.txt is the easy way. To do it correctly, you need to enumerate the storage cards. Credit this code to Ilya Tumanov...
Code:
For Each directory As String In System.IO.Directory.GetDirectories("\") ' Enumerating all subfolders in a root folder...
If ((New System.IO.DirectoryInfo(directory)).Attributes And IO.FileAttributes.Temporary) <> 0 Then ' Picking folders with Temporary attribute set...
Console.WriteLine("Found storage card: {0}", directory)
End If
Next
Pete