I've been reverse engineering other code (being that I don't know much about batch writing at all) to backup specific subfolders. Right now, it looks like this:
@echo off
for /f "tokens=1* delims=" %%a in ('date /T') do set datestr=%%a
mkdir "e:\Family Sync Folder Backup\%date:/=_%"
set source= "\\jessica\Family Sync Folder"
set destination= "e:\Family Sync Folder Backup\%date:/=_%"
robocopy %source% %destination% /e
This code is repeated for specific subfolders. I was wondering if there was a way to print onto screen something like "Currently Backing Up (FOLDER NAME)" followed by a percentage but without listing each file.
Bonus points for creating a log file which does display each file copied.