I'm trying to modify the MSDN example FSPWithCustomProviderSync so that it can work with hierarchical data..subfolders etc..
In the EnumerateItems for my simple provider...i have changed the code from
foreach (string fullFilePath in Directory.GetFiles(this._rootFolder))
to
foreach (string fullFilePath in Directory.GetFileSystemEntries(this._rootFolder))
do I now need to go through the file system recursively and create the ItemFieldDictionary?
Does anyone have an example of a custom provider working with the file sync provider that handles a hierarchical sync?