Eclipse Plugin to "Open Explorer in this File location" for Package Explorer - eclipse-plugin

Is there any plugin that lets me open the file I selected in the Package Explorer in windows explorer?
I am looking for an extra menu option in the right click menu of the package explorer.

Since Eclipse 4.4 (Luna) there is a Show in System Explorer command available from the context menu.
The Show In menu is also accessible through Alt+Shift+W on Linux/Windows and Alt+Cmd+W on macOS.
While there is a default setting that is suitable in most cases, the command for launching the system explorer can be configured on the General > Workspace preference page.

Hmmm... Looks like we all have this problem.
You can use this plugin to do exactly that and a bit more...
Sorry for self advertising... But I think this is what you are looking for!

I'm using StartExplorer for several years now. It's easy to use, is up-to-date and does simply, what you are expecting from it. You can install it through
Help > Eclipse Marketplace...
Usage:

If you can live without the context menu, you can even get this without any additional plugin, using just a launch configuration on the active selection.

I'm not sure if there's a direct way, but what you can do is right click on the file/folder, go to properties, then copy "Location" and put that string into a blank explorer window.
so,
right-click --> properties --> Location --> ctrl-c
open explorer window --> ctrl-v --> go button

You might want to have a look at http://marketplace.eclipse.org/content/eexplorer
keeps windows explorer in sync without the need to sync manually via context menu
less explorer windows -> less clutter
possibility to pop out native explorer
keyboard short cuts
:-)

Here's a simple plugin with just shell & file explorer
http://marketplace.eclipse.org/content/open-here-eclipse

Related

problem with running files in intellije idea,itsApparently the problem was caused by windows security

enter image description hereenter image description here
Windows Defender might impact performance
Exclude IDE and project directories from antivirus scans:
C:\Users\shahrokh\IdeaProjects\untitled1
C:\Users\shahrokh\AppData\Local\JetBrains\IntelliJIdea2021.2
C:\Users\shahrokh.gradle
Alternatively, add the IDE process as an exclusion.
i search it in the special site of intellij idea ,and see it:
If you prefer to perform the necessary configuration manually, you can do so by following these steps:
Click the Start button
Type “Windows Security”
Click on “Virus and threat protection”
Click on “Manage settings” under “Virus & threat protection settings”
Scroll down if needed, and then click on “Add or remove exclusions”
For every folder shown in the notification, press the + button, select “Folder” from the menu, and select the folder.
but when i search Windows Security my system show me windows defender ,there arent these setting
In addition, I changed my anti-virus settings so as not to interfere with the intellij idea process. But again, the problem was not solved.
i use kaspersky protection
please help me
You don't have to worry about anything. IntelliJ will continue to function as it is intended to and will get the work done. I also get some messages like this sometimes and just ignore them. Again there's no major impact on the performance. Hope that I was able to help.
i uninstall my intellij idea then install it again and it solved

How to fix Ctrl Click in IntelliJ Idea

I found, that Ctrl-Click (for example, on class usage) doesn't work on one of my installations of Idea. Simultaneously:
Context menu action like Go To -> Implementation(s) works
Control click in PyCharm works
Machine is remote desktop Windows Server 2016. Idea is 2021.2.
What can be done to fix?
Had a similar issue due to Rider importing settings from Visual Studio on the first run. Resolved it by changing the Keymap (Rider->Preferences->Keymap->Keymap drop down) back to the default one (IntelliJ).
In our case it was really an old SonarLint plugin. Check in Settings / Plugins. After the update the problem was solved.
I was having the same problem and going to File -> Reapair IDE... fixed it for me.

Netbeans project property disable

I am unable to do set my project property. when i do right click of my netbeans project then i can see project property in last option but unable to click property. i am using netbeans 8.0 and centos 7 os. In my laptop its working fine but desktop its not working. i did reset netbeans and reinstall again, I did same configrutaion but proble is same...
right-click my projects -> properties //this thing disable
anyone know why netbeans project property is disable my desktop only?
I hope here i will get answer.
Thanks in advance!!
#Trat, When you do right click on your netbeans project then property option show in last. so property option is showing over the task bar thats why you are unable to click on property. and you are thinking it is disable.
You need to set your screen resolution if you will use high resolution according your desktop screen then property option will not come over the task bar and you can click that option. I hope this solution will work for you :)

Is there developer folder available in Mac 10.9?

I want to clear derived Data from Xcode. So, I need to go to developer folder. But I have checked completely and i am unable to find. Is there developer folder available anymore?
Ya Sure,
Open the Finder
Click Go menu and hold the alt key
Then you will see the Library folder in the options
Click Library and there you will find Developer folder
hope it will work.

how do i chnage the desktop icon for a visual basic program (.exe)

im making a vb.net app and i want to set the icon, how can i do this?
--edit--
turns out i was a bit confused, and it was working. but the answers can still be useful for others.
If I understand the question and issue, your setup/installer might be missing something.
It would seem you did create a shortcut, add it to the Setup project to install to the Desktop (else you wouldnt have one at all)
Select the shortcut in your setup project, open the properties window
Click Target. The list of files you are installing will come up. Select the App.Exe (ie the main executable "MyApp.exe" ususally the primary output). I think Icon is supposed to be set to "Icon" as well.
I think those 2 things combined link the Desktop Shortcut's Icon property to Use the App.Exe's. If there is also a shortcut in the user's programs menu do the same thing (or drag drop a copy).
You are basically doing to the Setup Project's shortcut what you would do to a normal desktop icon to change it or set it. The proj apparently fills in the actual path etc at install.
EDIT
PUBLISH simply compiles everything and produces files for the dev to distribute. It is called PUBLISH because in many cases the output includes a ready to use Setup program for the END USER to install on the PC. (Based on your new Pic, you are trying to reinstall everytime you click the icon or file inside the folder.)
Again, if you do not add a Setup proj to your project, the default one is used and it gives no option for where to install and does not add a shortcut.
Just delete all that junk, Publish again to the default location (VS Studio\...Project name\bin\Publish). Go to that folder and run setup. It will still install to Users\AppData.. but will add a shortcut (to the program) to the start menu.
For a desktop icon, do the "Send To Desktop ..." thing. To INSTALL an icon, you have to add and modify a Setup proj to your Solution.
HTH
'The folder shows the icon for the app, but the icon for the form is different. change the form's icon(in the property grid) to the same as the app and you should see it then.
When you publish it there's 2 files produced that are basically setup files. One relies on the ClickOnce Application Deployment Support Library and the other is a standalone setup app. Since neither one is the actual app you designed, they aren't going to have the icon you want. You'll probably have to investigate other more configurable deployment options.