Coder Social home page Coder Social logo

azurebackup's Introduction

AzureBackup

This is a console application for backing up local files to Azure blob storage. It will scan through all the files in the provided folder paths and upload all those that don't already exist and overwrite those that do exist but that have been modified more recently on the local machine than the version in blob storage. This application won't overwite local files with the remote version if it has been modified more recently, nor will it delete local files if the remote version has been removed.

Setup

Create an appsettings.json file in the project root with the following structure

{
  "Azure": {
    "ContainerConnectionString": "<YOUR_CONNECTION_STRING>",
    "ContainerName": "<YOUR_CONTAINER_NAME>",
    "Logging": "",
    "BlobUpload": {
      "ParallelOperationThreadCount": "1",
      "SingleBlobUploadThresholdInBytes": "1048576"
    }
  },

  "Backup": {
    "Sources": [
      "C:\\Documents",
      "C:\\Music",
      "C:\\Pictures"
    ],
    "BoundedCapacity": 1000,
    "MaxDegreeOfParallelism": 1
  } 
}

The connection string is a shared access signature which can be generated from within Azure Storage Explorer, it should be granted read, write, delete and list rights.

Sources is an array of folder paths that contain files to be backedup.

Usage

I usually run this app straight from the command line but it would probably make more sense to create a scheduled task in windows to run it daily if something more regular is required.

azurebackup's People

Contributors

braegelno5 avatar mattosaurus avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.