I'm using SharePoint web services in C#. I have my code working to check files and check them out using the Lists web service. I need to test to see if a file exists; I can find lots of examples for doing this using the object model API, but I can't seem to find a straightforward way of doing this using web services.
|
feedback
|
|
This code may do, it's a little rough, but demonstrates how to get a list of files based on the title.
| |||||||
feedback
|
|
Try the Lists.GetListItems with a suitable CAML query. A CAML query like
should work; the field 'FileLeafRef' is where the filename is stored. | ||||
feedback
|
|
I also had similiar problems with this. I have tried the following FieldRefs without success: "Name", "FileLeafRef" and "LinkFilenameNoMenu". The post located at http://www.johanolivier.blogspot.com details what I had to do to get it working. Good luck ! | |||
|
feedback
|