Copy files from search tab in eclipse 3.4
I just want to copy list of files displayed in eclipse search tab, When i try using right click copy and paste into some 开发者_如何学Gofolder it does not work.It actually copies the file location rather than the file itself
There is no direct way to do this. What you can do is:
- Double click on the entry in the search tab
- F12 to switch to the editor
- Ctrl+Alt+W to select the file in the navigator view
- Drag the file from there to the place where you want it
Too tedious? Then open a command prompt or shell and use the file location there.
If you need file locations then use Eclipse search csv export plugin.
If want to copy the whole file(s) into a folder then refer @Aaron Digulla answer(Its applicable to single file). In case of multiple files. Press Ctrl + A to select all search results in search view. Right click on the selection. Choose Show In > Package Explorer
. Drag file(s) to a folder in any file explorer.
精彩评论