WebDAVClient icon indicating copy to clipboard operation
WebDAVClient copied to clipboard

Problem moving files

Open edav-mx opened this issue 9 years ago • 2 comments

Hi, some files with specific characters (+~$&°) have problem only on move, upload and delete works fine. Could it be related to how the destination path is specified?

headers.Add("Destination", dstUri.ToString());

Thanks.

edav-mx avatar May 02 '16 22:05 edav-mx

replace + with %2B , it may work.

MurariJha avatar Feb 28 '17 09:02 MurariJha

I tried with the following and it worked for me. headers.Add("Destination", dstUri.AbsoluteUri); I had a folder containing a SPACE.

guojian83 avatar Jan 13 '18 11:01 guojian83