views:

31

answers:

2

I have a weird requirement. Is there a way to allow someone the ability to create folders, edit files, add files on a server without using a FTP client. This would ideally be browser based and under one admin sesssion.

A: 

Yes, you could write a web app to do it. Your success will vary based on the OS of the said server, the development language, and the quality of the developers. See RFC 1867 for general file uploading rules. The other file upload operations depend heavily on what language and system. For example, on Windows in ASP.NET you could make the changes using the classes in the System.IO namespace (System.IO.DirectoryInfo, System.IO.FileInfo).

C. Ross
+1  A: 

Setting up a webdav server is an alternative.

consultutah
This is my thought as well, but you'd want to know the client's OS. WebDAV is a pain in the ass on XP for no good reason.
Tom