Added existing scripts

This commit is contained in:
2018-11-26 21:47:57 +01:00
parent af5243b367
commit 45551cd1b0
5 changed files with 123 additions and 0 deletions

18
RevitFolderCleaner.bat Normal file
View File

@@ -0,0 +1,18 @@
@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
)