vote up 1 vote down star
2

Hi everyone,

I was wondering if anyone knows how to or if it is possible to upload files to a sharepoint (v3/MOSS) document library over FTP. I know it is possible with webdav. If it is possible is this even supported by Microsoft?

flag

6 Answers

vote up 3 vote down check

I don't think so. I think you're options are:

  1. HTTP (via the upload page)
  2. WebDAV
  3. Web Services
  4. The object model
link|flag
Doesn't the stuff you upload gets saved in the database, not the file system, so FTP wouldn't know where to put it? – MrChrister Jan 16 at 16:20
The files are saved in BLOB fields in the Content database, but if webdav works (through windows explorer, why wouldn't ftp?) – Andrew Milsark Jan 16 at 17:13
vote up 0 vote down

I have a question about how to upload file using webdav?

link|flag
1  
If this question was no asked yet on StackOverflow then open a new question. – Flo Nov 12 at 14:40
vote up 0 vote down

Thank you all for your responses. We will most likely use the web service API.

link|flag
vote up 0 vote down

Direct FTP into SharePoint is not one of your options. You would need to have a timer job run that checks your FTP directory and uploads into the document library.

link|flag
vote up 2 vote down

You can map a drive to a SharePoint document library, for example \\serveraddress.domain.com\Documents. So I would try mapping a drive on your FTP server, then making sure files that come in over FTP get sent to that drive.

link|flag
For some strange reason mapping from explorer didn't work for me. Instead, the following worked well (once you're not copying from a non-windows machine)... * Open dos cmd prompt. * Create a mapped drive by using "net use DriveLetter: \\path\to\sharepoint\site" Copy at will or from a script, etc. – Hedley Lamarr Aug 24 at 13:04
vote up 0 vote down

Yeah i know about those 4. A customer of ours claims to have successfully done this over FTP. I'll try and get more info from them, but was just curious if anyone in the community has accomplished this and if there are any gotchas about security/speed/etc that i need to be aware of.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.