18 lines
359 B
Batchfile
18 lines
359 B
Batchfile
@echo off
|
|
REM Version: 1.1
|
|
REM Move revit backup files to the specified folder
|
|
REM Usage information: see readme.txt
|
|
REM Created by Peter Gyetvai: gyetpet@gmail.com
|
|
|
|
chcp 1250
|
|
SET FOLDER=D:\Backup\Revit\
|
|
for /R "%~dp0" %%f in (*.00*.rfa) do (
|
|
move "%%f" "%FOLDER%"
|
|
echo.
|
|
echo:%%f
|
|
)
|
|
for /R "%~dp0" %%f in (*.00*.rvt) do (
|
|
move "%%f" "%FOLDER%"
|
|
echo.
|
|
echo:%%f
|
|
) |