Backing up local OneDrive folder with Cloud Files

With the Windows 10 Fall Creators Update, local OneDrive files and folder are now “Cloud Files”, which are implemented as reparse points which may or may not be present. Duplicati treats all reparse points as symlinks, which is not correct. I would love to see an option for Cloud Files similar to SymlinkStrategy, e.g.:

    /// <summary>
    /// The possible setting for the CloudFiles strategy
    /// </summary>
    public enum CloudFilesStrategy
    {
        /// <summary>
        /// Automatically include CloudFiles that are downloaded, and ignore those that are not
        /// </summary>
        Auto,

        /// <summary>
        /// Ignore all CloudFiles
        /// </summary>
        Ignore
    }
4 Likes

It looks like this has been logged at GitHub as well: