Search found 6 matches
- 09 Dec 2009 09:23
- Forum: DOS Batch Forum
- Topic: FTP list
- Replies: 9
- Views: 11922
that worked, thanks a ton. another quick question. If the folder I want to copy exists I need to ask the person if they want to overwrite it. I was trying to do: echo Folder Exists, would you Like to Overwrite it (Y/N)? choice /c:yn but always get the error: 'choice' is not recognized as an internal...
- 08 Dec 2009 14:27
- Forum: DOS Batch Forum
- Topic: FTP list
- Replies: 9
- Views: 11922
- 07 Dec 2009 09:10
- Forum: DOS Batch Forum
- Topic: FTP list
- Replies: 9
- Views: 11922
- 07 Dec 2009 09:02
- Forum: DOS Batch Forum
- Topic: FTP list
- Replies: 9
- Views: 11922
i have to change folder names, but it looks like the following. my ftp script also does a cd to go down 2 folders, but this is at the root. ftp> dir 200 PORT command successful. 150 Opening ASCII mode data connection for /bin/ls. 11-19-09 02:39PM 73 10.0.200.50.url 12-03-09 06:02PM <DIR> Folder1 12-...
- 04 Dec 2009 09:39
- Forum: DOS Batch Forum
- Topic: FTP list
- Replies: 9
- Views: 11922
- 02 Dec 2009 15:48
- Forum: DOS Batch Forum
- Topic: FTP list
- Replies: 9
- Views: 11922
FTP list
Is there a way to run do ftp ls and get the list back into the batch file? I'm calling: :FTPSetup > script.ftp ECHO lcd "%LCL_PATH%"\%folderpath% rem >> script.ftp ECHO cd "%BKUP_PATH%"/%folderpath% >> script.ftp ECHO binary >> script.ftp ECHO ls >> script.ftp ECHO bye pause echo...