Satish
Satish

Reputation: 6485

How do I refresh Netbeans workspace?

In Eclipse, there is something called refresh workspace or F5 that refreshes the files, to make sure to pick-up any files that are changed outside eclipse.

How do i do that in Netbeans ? I am using 6.9.1 for PHP/Java development?

I don't see any refresh nor F5 works?

any hints? any plugins??

Upvotes: 79

Views: 71964

Answers (10)

bharatesh
bharatesh

Reputation: 1022

I think below is the best Answer to that. While Scan for External Changes takes a while.

Instead.

Tools->Options->Miscellaneous->Files and uncheck Enable-auto-scanning of source. Then it will give an option like Refresh Folder.

This is cool against scanning the whole project to see changes in one folder.

Upvotes: 47

Nanhe Kumar
Nanhe Kumar

Reputation: 16307

Source -> Scan For External Changes

enter image description here

Upvotes: 8

Roderick
Roderick

Reputation: 11

The only think that worked for me, is "Synchronization" when right-clicking on the project.

Upvotes: 1

Santhosh
Santhosh

Reputation: 8207

I made it like below ,

Right click on the folder (e.g webpages) --> Refresh

in my netbeans 6.9

Upvotes: 4

Alfonso Tienda
Alfonso Tienda

Reputation: 3699

Select "Scan for external changes" from the "Source" menu.

Upvotes: 14

Swapnil T
Swapnil T

Reputation: 547

For Netbeans-IDE 7.2 and above

Go To Tools->Options->Miscellaneous->Files and uncheck Enable-auto-scanning of source. Then it will give an option like Refresh Folder.

You can refresh the folder or whole workspace.

Upvotes: 28

macio.Jun
macio.Jun

Reputation: 9895

I use netbeans deploying php projects.

Source->Scan for External Changes

The files in the projects will be refreshed or synchronized with the windows file system.

Upvotes: 8

mrbnetworks
mrbnetworks

Reputation: 2627

Within NetBeans:

select "Source" > "Scan for External Changes" 

this will force the IDE to look for changes and "Refresh" the file structure.

I develop PHP within NetBeans and am frequently creating new files outside of the IDE. This does the trick every time and works quickly.

Upvotes: 91

Dave Lancea
Dave Lancea

Reputation: 1689

Also, if you're using subversion, if you use an external subversion client you can run "update" in the subversion menu to update the diff highlighting.

Upvotes: 1

Satish
Satish

Reputation: 6485

Never Mind, found ScanOnDemand plugin and also there is source-->Scan for External Changes menu.

Upvotes: 32

Related Questions