Upload selected files to ftp with button (dragNdrop)

I want to be able to select a few folders drag it to the button and have it update existing folders.

I did the following

@nodeselect
Copy TO=@myftpbookmark
WHENEXISTS/skip

I got this error

An error occurred copying 'glow.spr':
The directory or file cannot be created. (82)

Try this:

@nodeselect Copy TO=@myftpbookmark WHENEXISTS=skip

I get the same error

An error occurred copying 'glow.spr':
The directory or file cannot be created. (82)

I'm trying to update existing folders to this ftp. This is what the output window said '550 The system cannot find the file specified.'

What else is in the FTP log?

Here is my FTP output

31 User name okay, need password.
230 User logged in, proceed.
215 Windows_NT
211-FEAT
211 END
350 Requested file action pending further information.
350 Requested file action pending further information.
200 Command okay.
257 "/" is current directory
250 CWD command successful.
257 "/folder1" is current directory
200 Command okay.
550 The system cannot find the file specified.
550 The system cannot find the file specified.
FD_CLOSE - WSAECONNABORTED: Software caused connection abort
Connection closed

Edit the site entry for the FTP bookmark and turn on debug logging as well.

In the Display tab for the FTP site bookmark, can you turn on the Enable debug log option and do the same again?

That should show what Opus is asking the remote site to do and will hopefully reveal which path it's trying to copy to and why it isn't being accepted by the server.

[Edit: Oops, written at the same time as Jon's message.]

230 User logged in, proceed.
--> SYST
215 Windows_NT
--> FEAT
211-FEAT
211 END
--> REST 100
350 Requested file action pending further information.
--> REST 0
350 Requested file action pending further information.
--> TYPE I
200 Command okay.
--> PWD
257 "/" is current directory
--> CWD /cstrike
250 CWD command successful.
--> PWD
257 "/cstrike" is current directory
--> MKD gfx
200 Command okay.
--> CWD /cstrike/gfx
550 The system cannot find the file specified.

I see the problem but I'm not sure how to fix it. It's trying to make a directory that already exists.

No, it's making a directory that doesn't exist ("gfx"), and then trying to CD to it. The MKD (makedir) succeeds but the CWD (change dir) fails, which seems very odd. What happens if you try this manually by logging into the site and creating the folder yourself?

pastebin.com/d5d5b8c01
The folder is already there I don't understand.

all i did was copy paste over the existing folder.

http://www.screencast.com/t/M2g3bv3hF

You're not providing enough information to debug this. What is the exact path of the file that you are dragging to the button, and what is set for the home directory for the target FTP site?

From the log you pasted:

This creates a directory called "gfx", and this call succeeds which means the folder did not already exist.

This tries to change dir into the newly created folder, which for some reason fails. There's no mention of a directory called "env" in the log you pasted so either you haven't pasted the complete log or you are trying too many different things and not providing enough information about what you are trying to do.

Ah sorry about making it confusing. I upload my files from here
D:\uploadbox\cstrike

Home dir on FTP
27.410.238.245 port 27015/cstrike

Some of these folders in the cstrike folder have sub folders within them. There are six folders total
sprites, sound, overviews,models maps, gfx
These folders are identical in the ftp server. All I want to do is select these folders and drop them into the ftp and have it update the existing files.

I mean update existing folders ****

Ok I made a new test. I selected the maps folder which has only 1 file inside no sub folders, I got the same error.

230 User logged in, proceed.
--> SYST
215 Windows_NT
--> FEAT
211-FEAT
211 END
--> REST 100
350 Requested file action pending further information.
--> REST 0
350 Requested file action pending further information.
--> TYPE I
200 Command okay.
--> PWD
257 "/" is current directory
--> CWD 27.410.238.245 port 27015/cstrike
250 CWD command successful.
--> PWD
257 "/27.410.238.245 port 27015/cstrike" is current directory
--> MKD maps
200 Command okay.
--> CWD 27.410.238.245 port 27015/cstrike/maps
550 The system cannot find the file specified.
--> CWD 27.410.238.245 port 27015/cstrike/maps
550 The system cannot find the file specified.
--> CWD 27.410.238.245 port 27015/cstrike/maps
550 The system cannot find the file specified.
Connection closed

If you just open up the source folder on the left and the destination folder on the right, and drag the file across (or use the copy button), what happens?

--> STOR asdf.bsp
150 File status okay; about to open data connection.
80136 bytes sent in 20.484 seconds (2.952 Kbytes/sec)
451 Requested action aborted: local error in processing.

Very odd when I drag and drop the maps folder in commander view with ftp it uploads slow then i get the error shown above. I tested this in two servers. One tried to upload and about half way i got the error above. On Server 2 I uploaded it but it's avg was 7.77KB somethings not right.

I just tried filezilla it uploaded the file @ 600-700KB/s