- 
                Notifications
    
You must be signed in to change notification settings  - Fork 33
 
Open
Labels
Description
I'm struggling a bit to understand how to implement integrityCheck, I was looking at the examples but the test cases were too well-formed to really explain it to me.
For instance, if you have a CSV like
filepath,foo
file:///C:/a/content/b.txt,bar
file:///C:/a/content/c.txt,baz
file:///C:/b/content/a.png,boo
Are both C:\a\content and C:\b\content checked? If "content" (or whichever subfolder was supplied) wasn't the last folder in the path, would that cause a schema validation error?
Also, if relative paths are used:
filepath,foo
b.txt,bar
c.txt,baz
a.png,boo
would filepath: integrityCheck("excludeFolder") (or includeFolder I guess?) check in %cd%\content? Is a prefix required?