From Geeks With Blogs:
I'm in the process of building out a Data Warehouse and encountered this issue along the way.In the environment, there is a table that stores all the folders with the individual level. For example, if a document is created here:{App Path}\Level 1\Level 2\Level 3\{document}, then the DocumentFolder table would look like this: ID ID_Parent FolderName 1 NULL Level 1 2 1 Level 2 3 2 Level 3 To my und...