Android: adb.exe pull /mnt/sdcard/somefile.txt 不能运行

我想使用adb command 从设备中获取一个文件:

adb pull /mnt/sdcard/deviceinfo.dat C:\

但是总获得下面的信息:

cannot create 'c:\\deviceinfo.dat': No such file or directory

文件存在于设备中:

adb shell ls /mnt/sdcard/deviceinfo.dat

返回

/mnt/extsd/deviceinfo.dat

有一些变异:

adb pull /mnt/sdcard/deviceinfo.dat
adb pull /mnt/sdcard/deviceinfo.dat C:\
adb pull /mnt/sdcard/deviceinfo.dat C:\deviceinfo.dat

总是获得相同的错误。问题出在哪里啊?

adb pull /mnt/extsd/deviceinfo.dat试试
我测试我自己的手机用你的三种命令可以

su或者adb root了吗?