I am new to ReSharper and was trying to write some simple plugins. I wanted to try to get full path of the file I am currently using.

Something like "C:\Project1\Firstfile.cs". If I am using "FirstFile.cs" in Visual Studio.

I was planning to show the full path as tooltip. Information of the few APIs I need to use to get the path would be helpful.

link|improve this question

75% accept rate
feedback

2 Answers

up vote 0 down vote accepted

You can try the following:

public ICSharpFile CSFile = _process.ProjectFile.GetPsiFile(CSharpLanguageService.CSHARP) as ICSharpFile;
public IProjectFile ProjFile = CSFile.GetProjectFile();

Now, ProjFile.Location.ToString() should return you the complete path of your projectFile.

Good Luck!! Shaun

link|improve this answer
What is "_process" and where to get it? – Vasiliy Shiryaev Nov 28 '11 at 11:12
feedback

If you can wait for Visual Studio 11 you can use attribute CallerFilePath.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.