Added existing scripts
This commit is contained in:
18
RevitFolderCleaner.bat
Normal file
18
RevitFolderCleaner.bat
Normal 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
|
||||
)
|
||||
Reference in New Issue
Block a user