I want to copy files from the phone to the hard disk (by Visual basic 6.0). The phone is connected as a USB device.
I don't know what is the path of the phone ... It is not a letter like the hard disk (c,e,d,f,...) and using the name of the phone itself for the path does not work. (
I tried to use the path that I can get from windows explorer which is "This PC\Myphone
").
Example of the code:
Dim myobj As New FileSystemObject
Private Sub Command1_Click()
myobj.CopyFile "(My phone path which I don't know what is it)", "C:\New folder\(The name of the file that I want to copy)", True