views:

31

answers:

1

I have a doubt related to errors and warnings ........

For example i wrote a simple code in c (eclipse IDE) then i compiled. i got some errors and warnings in problem tab.This is the scenerio just think like this.

My doubt is where is errors and warnings are stored (in my computer) file.I want to know location of the file (which includes errors and warnings) .Please help me, i am doing a project related to ide creation.

Thanks &regards Ramachandra

+1  A: 

First of all you should know that what you see in Problems view in eclipse has not been saved as a log file in plain text. But if you want to see it: 1- Under each workspace there is a folder named ".metadata" . In linux it is a hide folder and you have to choose show hide files. I am not sure about windows.

2- open this path ".plugins/org.eclipse.core.resources/.projects/" under ".metadata".

3- choose the sub folder with the project name. (The project you want to see prolems for it).

4- there is two files holding the problems named ".markers" and ".markers.snap"

As said this is under Linux. Under windows may be it differs. But it should be something like this.

Not every text editor opens these files. I used emacs!

Govan