Is there a way to disable placeholder files with size (sparse files)?

Hi @allen,
We included an option to disable this feature in the advanced config file odrive_user_general_conf.txt

The option is set by default to:
"disableSparse": false,

You can change it to:
"disableSparse": true,

You may not see this option in your current configs. If not, you can either just add it yourself to the top like this:

{
    "disableSparse": true,
    "disableFSEvents": false, 
    "ignoreSizeMismatch": false, 
    "localScanIntervalSecs": 3600, 
    "maxDownloadRetries": 3, 
    "preventOldDownload": false, 
    "suppressTrashNotifications": false
}

Or you can delete the current odrive_user_general_conf.txt and restart odrive to create a new file with all of the default configs.

In either case, you will need to restart odrive after the change for it to take effect.