Welcome to the IDM Forum. This forum is meant as a user-to-user support mechanism where users can share knowledge and tips for all IDM software.
Since these forums are user-to-user based, IDM does not regularly read or reply to the posts in this forum. For problem reports, suggestions, or feature requests, you must email us directly. Our trained technical support staff answers most inquiries within 30 minutes.



@echo off
if not exist %1 goto ERROR_SOURCE_MISSING
if exist %1.2 goto ERROR_DESTINATION_EXISTS
:CLONE_FILE
copy %1 %1.2
goto END
:ERROR_SOURCE_MISSING
echo No source file specified
goto END
:ERROR_DESTINATION_EXISTS
echo Destination file already exists: %1.2
goto END
:END





