4
2
My phone path is Computer\Model-Number\Phone
. I wanted to use a util like windirstat on it but it doesn't recognize the path since it doesn't have a drive letter (I assume). I tried copying all my files using explorer and it choked up during the calculating time phase. I tried robocopy but got the error below. I tried mapping a drive before this step but it isn't on the network. I have no idea what I can do other than copy folders one at a time
C:\Users\MyUser>robocopy "Computer\Model-Number\Phone" c:\arch\phone /S /R:1 /W:1
-------------------------------------------------------------------------------
ROBOCOPY :: Robust File Copy for Windows
-------------------------------------------------------------------------------
Started : Wed Apr 24 14:33:48 2013
Source : C:\Users\MyUser\Computer\Model-Number\Phone\
Dest : c:\arch\phone\
Files : *.*
Options : *.* /S /COPY:DAT /R:1 /W:1
------------------------------------------------------------------------------
2013/04/24 14:33:48 ERROR 3 (0x00000003) Accessing Source Directory C:\Users\MyUser\Computer\Model-Number\Phone\
The system cannot find the path specified.
try starting Powershell instead of a Command prompt. Try running
Get-PSDrive
, and post the output. You might be able toCopy-Item -Recurse
. – Zoredache – 2013-04-24T18:58:48.600@Zoredache: No luck. I did it before and after i plugged in my phone and tried closing/opening my prompt/powershell. It had the same lines http://pastebin.com/DCyaGLTA
– None – 2013-04-24T19:15:34.4301You may be out of luck. It doesn't sound like your device is presenting itself to the OS in a way that you will be able to use standard filesystem tools. – Zoredache – 2013-04-24T19:49:32.303
is it possible to share that folder on the network? that way you could map a drive letter to that network share – golimar – 2013-04-25T08:37:00.673
@golimar: nope, it doesn't let me – None – 2013-04-26T21:54:22.970