When you drag files from File Explorer into the OneDrive web app, the upload process often halts partway through. You see the progress bar freeze, a partial file count, or a generic network error. This happens because browser-based uploads rely on a stable connection and specific file characteristics that can be interrupted by browser limits, network instability, or file conflicts. This article explains the technical reasons behind mid-upload failures and provides step-by-step fixes to complete your uploads reliably.
Key Takeaways: Stop Midway Upload Failures in OneDrive
- Browser developer tools > Network tab: Identify stalled requests and error codes (e.g., 413, 503) that reveal the exact failure point.
- OneDrive web settings > Upload limit: The browser upload limit is 250 GB per file; files exceeding this will always stop.
- Chrome flags > Parallel downloading: Disabling experimental network features can resolve mid-upload freezes caused by browser instability.
Why OneDrive Browser Uploads Stop Midway
Drag-and-drop uploads in the OneDrive web app use the browser’s built-in file upload API. This API sends the file in chunks over HTTPS. If any chunk fails to transmit, the browser retries automatically. However, several factors cause the retry mechanism to fail, stopping the upload entirely.
The most common root cause is a timeout or connection reset during the chunk transfer. Browsers have a default timeout for network requests. If a chunk takes longer than the timeout value — often 60 to 120 seconds — the browser cancels the entire upload. This happens frequently with large files (over 1 GB) or on networks with high latency.
Another cause is file path length. Windows allows paths up to 260 characters, but the OneDrive web app has a 400-character limit for the full URL path. When you drag a folder with deep nesting, the combined folder and file name may exceed this limit. The upload starts, processes several files, then stops when it hits a file with an overly long path.
Browser extensions can also interfere. Ad blockers, privacy tools, and download managers often modify HTTP headers or block requests to specific endpoints. OneDrive’s upload endpoint — upload.onedrive.com — may be blocked or throttled by these extensions, causing the upload to stop after a few files.
Steps to Fix OneDrive Browser Drag and Drop Upload Stops
- Check file size and path length
Open File Explorer and locate the files you are trying to upload. Right-click each file and select Properties. Verify the file size is under 250 GB. For folders, count the total depth of subfolders. Any file with a full path longer than 400 characters will fail. Rename the folder structure to shorten the path if needed. - Clear browser cache and cookies
In Chrome, click the three-dot menu > More tools > Clear browsing data. Select All time from the time range drop-down. Check Cookies and other site data and Cached images and files. Click Clear data. Restart Chrome completely before retrying the upload. - Disable browser extensions temporarily
In Chrome, typechrome://extensionsin the address bar and press Enter. Toggle off all extensions. Do not uninstall them. Try the upload again. If it completes, turn extensions back on one by one to identify the culprit. Common offenders include uBlock Origin, Privacy Badger, and Internet Download Manager extensions. - Use a private or incognito window
Open a new incognito window in Chrome (Ctrl+Shift+N). Sign in to OneDrive with your Microsoft 365 credentials. Drag and drop the files again. An incognito window loads without extensions and uses a fresh session, eliminating extension interference and stale session issues. - Reduce the number of files per drag
Select no more than 10 files or a single folder at a time. Dragging hundreds of files in one batch stresses the browser’s upload queue. Upload batches of 5 to 10 files sequentially. Wait for each batch to complete before starting the next. - Switch to a wired connection or restart your router
Wi-Fi interference can cause intermittent packet loss. Plug your computer directly into the router with an Ethernet cable. If that is not possible, restart your router by unplugging it for 30 seconds. Run a speed test at speedtest.net to confirm at least 10 Mbps upload speed. - Use the OneDrive desktop sync app instead
Open the OneDrive desktop app from the system tray. Click Help & Settings > Settings > Account. Choose Add an account if you have not already. In the Sync and backup tab, select Manage backup. Choose the folders you need and click Start backup. The desktop app handles large files and deep paths more reliably than the browser.
If OneDrive Still Has Issues After the Main Fix
Upload stops at exactly 4 GB or 10 GB
Some browsers impose a per-chunk size limit. Chrome’s default chunk size is 4 MB, but the total upload size is limited by available memory. If you see consistent failure at 4 GB or 10 GB, your browser may be running out of RAM. Close other tabs and applications. Restart the browser and try uploading smaller batches.
OneDrive shows a red exclamation mark on files after drag and drop
This indicates a sync conflict. The browser upload succeeded, but the file name matches an existing file in the same folder. OneDrive adds a conflict copy suffix. To prevent this, rename the file before dragging or check the OneDrive recycle bin for duplicates.
Drag and drop does nothing — no progress bar appears
This usually means JavaScript is disabled or a browser policy blocks file access. In Chrome, type chrome://settings/content/javascript and ensure JavaScript is allowed. If you are on a corporate-managed device, your IT administrator may have disabled file uploads via Group Policy. Contact your help desk.
Browser Upload vs OneDrive Desktop Sync: Key Differences
| Item | Browser Drag-and-Drop | OneDrive Desktop Sync App |
|---|---|---|
| Maximum file size | 250 GB per file | 250 GB per file |
| File path length limit | 400 characters | 400 characters |
| Batch upload reliability | Drops files after 10-20 items if network is unstable | Queues thousands of files with automatic retry |
| Offline support | No — requires active internet | Yes — files sync when connection is restored |
| Browser extension interference | Common cause of mid-upload stops | Not affected |
| Memory usage | High — entire upload runs in browser tab | Low — runs as a background service |
You can now resolve OneDrive browser uploads that stop midway by clearing the cache, disabling extensions, and reducing batch size. For large or recurring uploads, use the OneDrive desktop sync app. An advanced tip: press F12 in Chrome to open Developer Tools, go to the Network tab, and filter by XHR. This shows each chunk upload. If you see a 413 error, the file exceeds the server limit. If you see a stalled request for over 60 seconds, adjust the timeout in Chrome flags by disabling Parallel downloading.