I would like to backup Photoshop Touch files using adb pull in a Windows BAT file. The problem is that Photoshop Touch (using Save to Gallery) stores its files in /storage/sdcard0/Pictures/Adobe® Photoshop® Touch. I cannot figure out how to represent that name with the special character.
adb pull -a "/storage/sdcard0/PicturesAdobe® Photoshop® Touchadb" gives:
remote object '/storage/sdcard0/Pictures/Adobe½ Photoshop½ Touch' does not exist
adb shell ls "/storage/sdcard0/Pictures gives:
Adobe® Photoshop® Touch
Screenshots
(Actually the special character appears different in the cmd shell. I just copied it from there to the above.)
I also tried adb shell ls /storage/sdcard0/Pictures/Adobe*/. | tr -s "\n\r" "\0" | xargs --verbose --null --max-args=1 adb pull -a which gives:
C:\Android\platform-tools\adb pull -a
remote object '/storage/sdcard0/Pictures/Adobe® Photoshop® Touch/1360025632957.p
ng' does not exist
C:\Android\platform-tools\adb pull -a
remote object '/storage/sdcard0/Pictures/Adobe® Photoshop® Touch/1361031995178.j
pg' does not exist
C:\Android\platform-tools\adb pull -a
remote object '/storage/sdcard0/Pictures/Adobe® Photoshop® Touch/1378048402699.j
pg' does not exist
C:\Android\platform-tools\adb pull -a
remote object '/storage/sdcard0/Pictures/Adobe® Photoshop® Touch/1378649769043.j
pg' does not exist
C:\Android\platform-tools\adb pull -a
remote object '/storage/sdcard0/Pictures/Adobe® Photoshop® Touch/1378651034186.j
pg' does not exist
C:\Android\platform-tools\adb pull -a
remote object '/storage/sdcard0/Pictures/Adobe® Photoshop® Touch/1378651833677.j
pg' does not exist
C:\Android\platform-tools\adb pull -a
remote object '/storage/sdcard0/Pictures/Adobe® Photoshop® Touch/1389200848310.j
pg' does not exist
C:\Android\platform-tools\adb pull -a
remote object '/storage/sdcard0/Pictures/Adobe® Photoshop® Touch/1417468827724.j
pg' does not exist
Again, the ® looks different in the cmd shell, but the above is what pasted. I would have guessed this would work as it doesn't use any special characters that I input. The problem may be with tr, which I get from Cygwin.
The problem seems to be how the different parts handle the ®. I don't know any other way to get the name that must be entered in the BAT file.
Any help would be appreciated. Thank you.