Is there a way other than looping throug the Files in a SPFolder to determine if a give filename (string) exists?
closed as off topic by 卵が好き, Mario, Nile, Derek 朕會功夫, RolandoMySQLDBA Mar 29 at 1:16
Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.
|
You can, if you know the URL also use the SPFile.Exists property as follows:
One would on first thought assume SPWeb.GetFile throws an exception if the file does not exist. But as you see this is not the case - it will actually return a SPFile object. |
|||
|
|
|
But if you are using SP 2010 Client OM, it would actually throw an exception if the file doesn't exist:
|
||||
|
|
|
Using a CAML query is the most efficient way (example here) CAML can be a bit unwieldy, so also worth looking at the Linq to Sharepoint provider, which hides the details of CAML away from you. |
|||
|
|