FlashAir SD card HTTP copy directory

seadiel

New Member
I picked up a FlashAir SD card and I would like to copy the dcim folder on the SD to my phone.

You connect to the FlashAir via wifi and can navigate to the web interface via h ttp://flashair/ (intranet). In a Windows PC you connect to the broadcasting wifi and copy the folder.

How do I copy directory from h ttp://flashair/dcim to root on sd card. I could only find topics on moving folders around the sd nothing with http.

FTP doesn't seem to work with the Flashair.

Thanks,
Seadiel
 

seadiel

New Member
I am creating an app that will transfer files from h ttp://flashair/dcim to the sd card root.

Below is what I would use for a Windows PC program how do I convert this code to an android app if even possible?

Dim dir As DirectoryInfo = New DirectoryInfo("\\flashair\dcim\")
For Each fi As FileInfo In dir.GetFiles()
fi.CopyTo("C:\temp\" + fi.Name)
Next
 
Upvote 0
Top