Ray Hulha
Ray Hulha

Reputation: 11221

Is it possible to pass the full path of the currently open file in Eclipse to an external tool?

I know about the ${selected_resource_loc} but that refers to the selected file in the left navigator...

Upvotes: 2

Views: 89

Answers (1)

Strelok
Strelok

Reputation: 51441

No, there isn't. If you can find the relative path to the file somehow, you can use the ${workspace_loc:<resource path>} variable expansion to get the absolute file system path.

Upvotes: 1

Related Questions