In this article…
- If your Dropbox account is over your storage space quota then file syncing will stop. Files won't be removed, and syncing will resume when you bring your account under your quota again. To get your account under your storage space quota you can.
- Dropbox's Smart Sync is the middle ground. I can have my photos show up locally as files, browsable by all apps on the system, but not take up space. What Smart Sync does, is retain a reference to the files which are selected to be present as 'Online Only', and download them when accessed for the first time.
- A step up from the free Basic account plan will be the Plus Plan. The Dropbox Plus plan will start at $11.99/monthly and provide you 2TB of storage. You will also be provided with priority email support and features like smart sync and Dropbox rewind. Smart Sync allows you to access your files and folders stored in Dropbox without worrying if.
- If you find that your hard drive is close to full, you can use the Dropbox Smart Sync feature to move files off the hard drive and into the cloud only. This can be an invaluable tool for freeing up hard drive space, whether you just need extra space for a few hours, a few days, or permanently.
These snapshots may not update after you've used Smart Sync to set Dropbox files as online only. This means that hard drive space you freed up with Smart Sync may not be immediately reflected or available if this snapshot hasn't updated. This hard drive space should eventually be freed up by the OS, but the amount of time this will take can vary.
- How Smart Sync works: Supporting technologies
- How to Disable Smart Sync
What is Dropbox Smart Sync?
Dropbox Smart Sync Help
The team at Dropbox says it best:
And this short video discusses the considerable benefits of Smart Sync:
Indeed, Smart Sync has been a very popular feature since its debut in 2017.
How Smart Sync works: Supporting technologies
Smart Sync leverages a trio of Windows capabilities:
1. NTFS Sparse Files technology
NTFS Sparse File functionality allows Dropbox to create an 'empty shell' for any file — with all the usual information (name, size, etc.) but with none of the actual content.
So when you create a file on Dropbox.com, the file's information (its 'metadata') is immediately downloaded to your computer but none of the file's contents are transferred in that operation. As a result, you can see the file on your system but it consumes almost no space on your hard drive. Very efficient!
But what happens when you try to access the zero-content file? That's where the next technology comes in…
2. Windows file system Minifilter driver technology
When you access a file in your Dropbox folder, demanding to see its content, a Windows Minifilter driver ensures that the file's contents are quickly fetched from Dropbox.com. The arrangement is fairly technical, but the following example illustrates the basic concept.
Suppose you have an online-only file called 'notes.txt' in your Dropbox folder. Its contents have not yet been downloaded to your computer. When you double-click on the file:
- Windows starts Notepad (the program associated with .TXT files), passing it the full path to notes.txt.
- Notepad calls the Windows API ReadFile function to grab the contents of notes.txt
- But before invoking ReadFile, Windows intercepts the operation and notifies the Dropbox Minifilter that a program would like to read the contents of notes.txt.
- The Minifilter, seeing that the file's contents have not yet been downloaded, arranges for the file's contents to be retrieved from Dropbox.com and saved on the local PC.
- Windows next calls ReadFile, which returns the contents of the file.
- Notepad displays the contents of the file.
Most of the magic happens in step 4. The next section examines how that works.
3. Windows Interprocess Communication (IPC)
At first, we thought that the Minifilter component did all the heavy lifting, downloading content as necessary. However Dropbox says otherwise (the Minifilter is a 'system extension'):
We don't use system extensions to make network requests We don't use system extensions to parse any data in the filesystem We don't use system extensions to read or write files |
Clearly the Minifilter isn't downloading the files from Dropbox.com. So what's doing it?
The answer: Dropbox.exe — the process run when you launch Dropbox on your desktop.
So when you request an 'online-only' file not yet on your hard drive:
- The Minifilter receives the request.
- The Minifilter contacts the Dropbox.exe process and asks it to get the file.
- Dropbox.exe goes out to the Internet and downloads the file from Dropbox.com.
- Windows makes the file available to the user.
How To Free Up Space On Dropbox
The Minifilter and Dropbox.exe interact using Windows Interprocess Communication — a collection of technologies supporting communication between different programs.
Now that we understand how Smart Sync works, let's highlight three implications of the technical architecture.
Implication #1: Files cannot be downloaded without an Internet connection
This shouldn't be a surprise.
Since files are fetched from the cloud as needed, you must be connected to the Internet to download files from Dropbox.com.
Dropbox confirms this limitation in their FAQ as well:
No, online-only content isn't stored locally on your computer. Connect to the internet to access online-only content.
Implication #2: Files cannot be downloaded if Dropbox isn't running
As mentioned before, the Dropbox process (Dropbox.exe) plays a key role in downloading 'incomplete' Smart Sync files. No file can be downloaded if Dropbox is not running.
To be clear, the Minifilter is always notified when you try to access an 'online-only' file in the Dropbox folder. But if Dropbox isn't running, there is no way for the Minifilter to download the file. The operation fails and you get a wonderful 'Unspecified error' message (pictured here from the Dropbox forums):
Note that this behavior only occurs when Smart Sync is on. Without Smart Sync — where Dropbox synchronizes all files to your hard drive — each document you see on your computer is readily available whether Dropbox is running or not.
Implication #3: Files cannot be downloaded if Dropbox is running as a Windows Service
Perhaps the most subtle consequence of the Smart Sync architecture has to do with background operation. Specifically, the Minifilter and Dropbox must operate in the same Windows Session for the two to communicate.
This is not a problem when you use Dropbox interactively on the desktop. All components run in the single logon session and Dropbox downloads files on demand, as expected.
And this short video discusses the considerable benefits of Smart Sync:
Indeed, Smart Sync has been a very popular feature since its debut in 2017.
How Smart Sync works: Supporting technologies
Smart Sync leverages a trio of Windows capabilities:
1. NTFS Sparse Files technology
NTFS Sparse File functionality allows Dropbox to create an 'empty shell' for any file — with all the usual information (name, size, etc.) but with none of the actual content.
So when you create a file on Dropbox.com, the file's information (its 'metadata') is immediately downloaded to your computer but none of the file's contents are transferred in that operation. As a result, you can see the file on your system but it consumes almost no space on your hard drive. Very efficient!
But what happens when you try to access the zero-content file? That's where the next technology comes in…
2. Windows file system Minifilter driver technology
When you access a file in your Dropbox folder, demanding to see its content, a Windows Minifilter driver ensures that the file's contents are quickly fetched from Dropbox.com. The arrangement is fairly technical, but the following example illustrates the basic concept.
Suppose you have an online-only file called 'notes.txt' in your Dropbox folder. Its contents have not yet been downloaded to your computer. When you double-click on the file:
- Windows starts Notepad (the program associated with .TXT files), passing it the full path to notes.txt.
- Notepad calls the Windows API ReadFile function to grab the contents of notes.txt
- But before invoking ReadFile, Windows intercepts the operation and notifies the Dropbox Minifilter that a program would like to read the contents of notes.txt.
- The Minifilter, seeing that the file's contents have not yet been downloaded, arranges for the file's contents to be retrieved from Dropbox.com and saved on the local PC.
- Windows next calls ReadFile, which returns the contents of the file.
- Notepad displays the contents of the file.
Most of the magic happens in step 4. The next section examines how that works.
3. Windows Interprocess Communication (IPC)
At first, we thought that the Minifilter component did all the heavy lifting, downloading content as necessary. However Dropbox says otherwise (the Minifilter is a 'system extension'):
We don't use system extensions to make network requests We don't use system extensions to parse any data in the filesystem We don't use system extensions to read or write files |
Clearly the Minifilter isn't downloading the files from Dropbox.com. So what's doing it?
The answer: Dropbox.exe — the process run when you launch Dropbox on your desktop.
So when you request an 'online-only' file not yet on your hard drive:
- The Minifilter receives the request.
- The Minifilter contacts the Dropbox.exe process and asks it to get the file.
- Dropbox.exe goes out to the Internet and downloads the file from Dropbox.com.
- Windows makes the file available to the user.
How To Free Up Space On Dropbox
The Minifilter and Dropbox.exe interact using Windows Interprocess Communication — a collection of technologies supporting communication between different programs.
Now that we understand how Smart Sync works, let's highlight three implications of the technical architecture.
Implication #1: Files cannot be downloaded without an Internet connection
This shouldn't be a surprise.
Since files are fetched from the cloud as needed, you must be connected to the Internet to download files from Dropbox.com.
Dropbox confirms this limitation in their FAQ as well:
No, online-only content isn't stored locally on your computer. Connect to the internet to access online-only content.
Implication #2: Files cannot be downloaded if Dropbox isn't running
As mentioned before, the Dropbox process (Dropbox.exe) plays a key role in downloading 'incomplete' Smart Sync files. No file can be downloaded if Dropbox is not running.
To be clear, the Minifilter is always notified when you try to access an 'online-only' file in the Dropbox folder. But if Dropbox isn't running, there is no way for the Minifilter to download the file. The operation fails and you get a wonderful 'Unspecified error' message (pictured here from the Dropbox forums):
Note that this behavior only occurs when Smart Sync is on. Without Smart Sync — where Dropbox synchronizes all files to your hard drive — each document you see on your computer is readily available whether Dropbox is running or not.
Implication #3: Files cannot be downloaded if Dropbox is running as a Windows Service
Perhaps the most subtle consequence of the Smart Sync architecture has to do with background operation. Specifically, the Minifilter and Dropbox must operate in the same Windows Session for the two to communicate.
This is not a problem when you use Dropbox interactively on the desktop. All components run in the single logon session and Dropbox downloads files on demand, as expected.
However, customers running Dropbox as a background Windows Service face a problem. Dropbox will be running in Session 0 (the home for all Windows Services), while the Minifilter will be operating in the user's interactive session (for example Session 1). The components will not be able to communicate and the files cannot be downloaded or opened. The 'Unspecified Error' will abound.
So if you're running Dropbox as a Windows Service (perhaps with our AlwaysUp utility), you should definitely turn Smart Sync off. Read on to find out how to do that.
How to Disable Smart Sync
You have a couple of options. You can either disable Smart Sync for specific folders, or turn off the feature entirely.
Disable Smart Sync for a single folder
This video illustrates how to adjust your Smart Sync folder settings:
And here are the step-by-step instructions to disable Smart Sync for a specific folder only:
- Click the Dropbox tray icon () to open the Dropbox menu
- Click the folder icon in the upper right:
- Find the folder that you would like to change. Right-click that folder and select Smart Sync > Local from the menu:
Dropbox Smart Sync Not Working
That's it. In a minute or two, the Dropbox process will notice the change and will download the entire folder to your hard drive.
Turn off Smart Sync for your Dropbox Plus, Professional, or Business account
To turn off the Smart Sync feature entirely, please follow these instructions to opt out of the system extension on Dropbox.com.
How Do I Use Dropbox Smart Sync On My Mac
Dropbox Business team administrators can deactivate Smart Sync by opting out here (sign in required).
Questions about Smart Sync? Need Help?
Please get in touch and we'll be happy to help — with this or any Dropbox feature.