Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is Important Files Folder Project in netbeans

Tags:

php

netbeans-7

I see some of my projects have 'Important Files' folder under Projects window in NetBeans. Not all projects have this. That is not a physical folder on disk either and have listing of already existing files under 'Source Files' folder. What is that and how NetBeans populates this list of files? I am using NetBeans version 7.2

like image 999
Vipin Kr. Singh Avatar asked Sep 07 '12 13:09

Vipin Kr. Singh


People also ask

Where does Netbeans store project files?

Under the project name that interest you, go in the "src" folder. All your java files should be there. Show activity on this post. On Ubuntu 16.04 using NetBeans IDE 8.2, a folder called NetBeansProjects was created in my root directory, parallel to the netbeans-8.2 directory.

How do I view project files in Netbeans?

In NetBeans 8.2 Go to Window->Navigator in menu bar or press Ctrl+7 and select Projects it will open a folder as work space .

What is nbProject folder?

The nbProject folder contains all the netbeans metadata about your project. When you go Project -> properties all the settings (and others) that you find there are stored in the nbProjects folder.

Where is project structure in Netbeans?

The project contains all of your sources and project metadata, such as the project's Ant build script. The project opens in the IDE. You can view its logical structure in the Projects window (Ctrl-1) and its file structure in the Files window (Ctrl-2).


1 Answers

Plugins that extend PHP projects, be them stock or third-party, have the ability to define specific files or directories that are important to the project and developers may need quick access to.

This is demonstrated by an official tutorial made specifically to explain how to extend a project type to add the "Important Files" node to the logical project view.

New NetBeans IDE APIs since NetBeans IDE 6.0 enable you to add new nodes to an existing project type's logical view, new objects to an existing project type's lookup, and new panels to an existing project type's Project Properties dialog box. For example, in this tutorial, to illustrate these extensions, we extend the web application project type's logical view, by adding a new "Important Files" node, exposing the content of the project's "nbproject" folder...

I can't say exactly why some of your projects have or do not have this "Important Files" node present, but I do know in the case of one of my own projects that Netbeans's native support for the PHP package manager "Composer" will show the Important Files with composer.json if it finds that file in the project folder.

like image 93
p0lar_bear Avatar answered Oct 19 '22 13:10

p0lar_bear