Safipok@lemmy.ml to Microsoft 365@lemmy.ml · 3 months agoHow can I pull a big folder from OneDrive preferably with command line on Windows?message-squaremessage-square6linkfedilinkarrow-up14arrow-down10
arrow-up14arrow-down1message-squareHow can I pull a big folder from OneDrive preferably with command line on Windows?Safipok@lemmy.ml to Microsoft 365@lemmy.ml · 3 months agomessage-square6linkfedilink
minus-squarenihilist_hippielinkfedilinkEnglisharrow-up2·edit-23 months agoNot sure what you mean by ‘pull a folder’. Copy? Here’s the Powershell command to copy a directory: Copy-Item -Path "C:\source\folder" -Destination "D:\destination" -Recurse Modify to your use case!
minus-squareSafipok@lemmy.mlOPlinkfedilinkarrow-up2·3 months agoSo, I have a folder in OneDrive of my company. But, everytime I try to download the huge structure it fails. I was wondering if there is any command to copy the whole structure.
minus-squarenihilist_hippielinkfedilinkEnglisharrow-up1·edit-23 months agoHave you tried the command above? What about the OneDrive desktop app? (I know you want command line but I’m just checking)
minus-squareSafipok@lemmy.mlOPlinkfedilinkarrow-up2·3 months agoYeah, I ended up just signing in to onedrive on the desktop. I initially did not want to sign in, but I was forced to anyway.
Not sure what you mean by ‘pull a folder’. Copy?
Here’s the Powershell command to copy a directory:
Copy-Item -Path "C:\source\folder" -Destination "D:\destination" -Recurse
Modify to your use case!
So, I have a folder in OneDrive of my company. But, everytime I try to download the huge structure it fails. I was wondering if there is any command to copy the whole structure.
Have you tried the command above? What about the OneDrive desktop app? (I know you want command line but I’m just checking)
Yeah, I ended up just signing in to onedrive on the desktop. I initially did not want to sign in, but I was forced to anyway.