How can I find out how deep is a document in a document library? Should I simply parse the url of the file and split according to position of slash character? Or is there a better way?

Thanks.

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

You can use

file = web.GetFile("URL");

to get the file object. Then you can loop using ParentFolder until you reach the root folder of the document library and count the depth.

Kind regards Stefan

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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