diff --git a/main.py b/main.py index 00208ad..08310ca 100644 --- a/main.py +++ b/main.py @@ -10,22 +10,19 @@ auth_token = 'd40c831e56785afaa9294fd3c5a88e6e' client = Client(account_sid, auth_token) # File Paths -local_path = 'C:\\Users\\ICYN3\\Documents\\dev\\BiFileMover\\' +local_path = 'C:\\BlueIris\\New\\' remote_path = 'Y:\\' # Logging Setup logging.basicConfig(filename='mover.log', format='%(asctime)s %(message)s', datefmt='%m/%d/%Y %I:%M:%S %p', level=logging.INFO) - - # Check if the mapped drive is connected remoteOn = os.path.exists(remote_path) -print(remoteOn) if remoteOn is True: for file in os.listdir(local_path): - t = os.path.getmtime(file) + t = os.path.getmtime(local_path + file) age = (time.time() - t) / 86400 if age >= 7: shutil.move(local_path + file, remote_path + file)