Batch File Commands
Hi All,
I have a requirement to ftp the xml files from the local system folder to apps server /vol02/UAT1/tmp and vice the versa. So I have written a batch file to achieve this. This batch file is working only when the input parameter is given. But I want to copy all the *.xml files to the server without any parameter. Please find the code below and help me how to modify the code to transfer all the files.
Transfer.bat
@echo off
:INPUT
set INPUT=
set /P INPUT=File Name: %=%
if "%INPUT%"=="" goto input
echo Upload file : %INPUT%