GIF89a; %PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 134.29.175.74 / Your IP : 216.73.216.160 Web Server : nginx/1.10.2 System : Windows NT CST-WEBSERVER 10.0 build 19045 (Windows 10) i586 User : Administrator ( 0) PHP Version : 7.1.0 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/nginx/html/JimMartinson/_Archive/CST1861/CST1861/has space/ |
Upload File : |
::@echo off :: parseList.cmd :: shows how to enter a list into your cmd file and parse it to perform an action. goto:main :: Enter a list of directories you want backed up BELOW this line. Do not remove this line. :: C:\Users\dlskills\downloads C:\Users\dlskills\Documents C:\Users\Public\vmware C:\Users\dlskills\My Documents\Virtual Machines E:\Virtual Machines C:\dlskills\stuff C:\Users\dlskills\AppData\Local\Mozzilla\Firefox\Profiles C:\Users\dlskills\AppData\Local\IE\Profiles D:\CST1861\has space :: Enter a list of directories you want backed up ABOVE this line. Do not remove this line. :: :main if NOT "%~1"=="/?" echo SkipHelp set _processDirectory= for /f "tokens=* usebackq" %%f in ("%~f0") do call:parseTest "%%f" goto:EOF :parseTest if NOT "%_processDirectory%"=="Done" call:parseDirectories "%~1" goto:EOF :parseDirectories ::echo %~1 if defined _processDirectory ( if NOT "%~1"==":: Enter a list of directories you want backed up ABOVE this line. Do not remove this line. ::" ( call:doBackup "%~1" ) else ( set _processDirectory=Done ) ) else ( if "%~1"==":: Enter a list of directories you want backed up BELOW this line. Do not remove this line. ::" set _processDirectory=yes ) goto:EOF :doBackup echo Backup the %~1 directory. goto:EOF