Tapatalk

Exclude file extension from project

Exclude file extension from project

6
NewbieNewbie
6

PostNov 18, 2014#1

Hi folks,
Is there any way I can exclude all my compiled Progress source code from being shown within my project. They are easily identified by their file extension (*.r) and I need to keep them in the same folder as the source code but would prefer not to see them within my project.
Cheers

6,826625
Grand MasterGrand Master
6,826625

PostNov 18, 2014#2

Yes, there is Filter at bottom of the project settings dialog where you can specify which files to include. For example *.c;*.h is very common for 'C' projects.

There is no exclude filter, just an include filter. So you have to specify the files you want in your project using wildcards like when using command dir in a command prompt window separated by semicolons.

If your projects contains explicitly specified folders using Add folder button, it is possible to use an include filter per folder.

6
NewbieNewbie
6

PostNov 18, 2014#3

Thanks that was the way I did it but would have preferred to have just excluded one rather than having to add them all