|
| 1 | +# |
| 2 | +# AutoBackup.py - 0.1 |
| 3 | +# |
| 4 | +# |
| 5 | +# Copyright 2017 Christopher Ribeiro |
| 6 | +# |
| 7 | +# Licensed under the Apache License, Version 2.0 (the "License"); |
| 8 | +# you may not use this file except in compliance with the License. |
| 9 | +# You may obtain a copy of the License at |
| 10 | +# |
| 11 | +# http://www.apache.org/licenses/LICENSE-2.0 |
| 12 | +# |
| 13 | +# Unless required by applicable law or agreed to in writing, software |
| 14 | +# distributed under the License is distributed on an "AS IS" BASIS, |
| 15 | +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 16 | +# See the License for the specific language governing permissions and |
| 17 | +# limitations under the License. |
| 18 | + |
| 19 | + |
| 20 | + |
| 21 | +# Import the needed modules; |
| 22 | +from time import sleep as Sleep; |
| 23 | +from distutils.dir_util import copy_tree as Copy; |
| 24 | +from sys import argv as Arguments; |
| 25 | + |
| 26 | + |
| 27 | +# Main class; |
| 28 | +class AutoBackup (): |
| 29 | + # Instantiate the class; |
| 30 | + # |
| 31 | + # MainFolder: String; |
| 32 | + # TargetFolder: String; |
| 33 | + # Delay: String; |
| 34 | + def __init__ (self, MainFolder, TargetFolder, Delay): |
| 35 | + # Set the folder to be copied by the MainFolder argument; |
| 36 | + self.MainFolder = MainFolder; |
| 37 | + |
| 38 | + # Set the destination folder by the TargetFolder argument; |
| 39 | + self.TargetFolder = TargetFolder; |
| 40 | + |
| 41 | + # Set the interval to save the folder; |
| 42 | + self.Delay = Delay; |
| 43 | + |
| 44 | + # Start the whole process; |
| 45 | + self.Backup (); |
| 46 | + |
| 47 | + |
| 48 | + # Backup the especified files; |
| 49 | + def Backup (self): |
| 50 | + # Main loop, trying to copy from one directory to another; |
| 51 | + while True: |
| 52 | + # Try copy files from MainFolder to TargetFolder; |
| 53 | + try: |
| 54 | + Copy (self.MainFolder, self.TargetFolder); |
| 55 | + except: |
| 56 | + # If can't copy, tell the user and stop the process; |
| 57 | + print ("Could Not Execute The Backup."); |
| 58 | + break; |
| 59 | + |
| 60 | + # Tell the user that the backup has been done; |
| 61 | + print ("Backup Done!\n Files Copied From: %s To: %s." % (self.MainFolder, self.TargetFolder)); |
| 62 | + |
| 63 | + # Wait using the Delay before save again; |
| 64 | + Sleep (int (self.Delay)); |
| 65 | + |
| 66 | + |
| 67 | + |
| 68 | +# Start the backup process at file execution; |
| 69 | +if __name__ == "__main__": |
| 70 | + # Check if the received arguments was 3; |
| 71 | + if len (Arguments) > 4 or len (Arguments) < 4: |
| 72 | + # Prompt the user with the correct arguments to be used; |
| 73 | + print ("Argument Must Be:\nAutoBackup ConfigFile"); |
| 74 | + else: |
| 75 | + # Start the AutoBackup class by the given arguments; |
| 76 | + AutoBackup (Arguments[1], Arguments[2], Arguments[3]); |
0 commit comments