Skip to content

Can lint recursively scan sub directories for the source code? For example, I want to use: lint Z:\*.* and have it then recurs down our directory structure and parse all our source files?

No, but what you can do is obtain a list of files using the DOS dir command (or ls on UNIX) such as:

   dir /s/b *.cpp > project.lnt

You can then use project.lnt as input to lint.  You should make sure that all those files are in the same project.

Feedback and Knowledge Base