0

I have to implement a HTTP server with some file server capabilities. I'd already coded HTTP HEAD, GET, PUT, and DELETE requests.

Next thing I need to implement something like RENAME or MOVE to change the name of a file which is already stored on the server. But I cannot find an appropriate HTTP request method for this.

Any idea how to do this or might that be not possible?

Joe
  • 3,090
  • 6
  • 37
  • 55

1 Answers1

1

Found WebDAV extensions which added a matching HTTP method MOVE for this.

There is also a method MKCOL to create a directory.

Joe
  • 3,090
  • 6
  • 37
  • 55