Netbeans 7.3.1 - Creating a folder in the project view - netbeans

How can I create a folder to be situated on the project view/tab not on the files tab in netbeans? Because whenever I create a folder on the project view, it directly appears on the files tab and the folder is not visible on the project view itself .Please help!

When you try to create a folder in a project, folder will be created successfully, but it doesn't appear as a folder icon. Instead it appears as a package icon. The same this appears as a folder in files tab.

Related

How can i add custom folder when i create flutter project

For example
"Create assets folder with 4 base folders automatically when I create the project"
Do right click on parent project directory and you will get create new directory enter the directory name and your folder or directory created succesfully. You can create directory as required
What IDE are you using? You could create a folder somewhere like this
temp-folder/assets/
temp-folder/base1/
temp-folder/base2/
temp-folder/base3/
temp-folder/base4/
Then just copy paste the above five folders into your project folder.

making a folder visible in eclipse project

I am trying to load tomcat 7 into eclipse using this tutorial.
When I unzipped to the folder associated with the project, the tomcat folder was loaded as a subfolder. I therefore dragged all the folders into the root folder of the new tomcat7 eclipse project. The only folder which eclipse would not move is the bin folder. Eclipse instead gives me a dialog box with the following error message: "The element 'bin' exists in the selected destination. You can either skip the conflicting element, skip all conflicting elements, or cancel the whole operation."
The problem is that there is no bin folder present. Eclipse does not show a bin folder in the tomcat7 project within eclipse. And the windows explorer view of the file system also does not show any folder named bin within the tomcat7 folder in the directory hierarchy associated with the workspace.
I feel that I need the contents of the bin folder in the place where eclipse can see and work with them. Can anyone show me how to move the contents of the bin folder into the place where eclipse will see them? Now, the bin folder is stuck as a subfolder within the tomcat subfolder within the tomcat7 project.
As your default Java Output Folder for the project, it's hidden in the Package Explorer since everything that goes there was either compiled from or copied from a visible Source Folder. Use the Navigator View when working at this low a level instead.

Created Group folder is not visible in show in finder on xcode

I am working on an iphone app and i created different group folders like Json ,Asi etc .
In Xcode its easy to classify the file in this way , but when i am trying to show in finder all the files are comes under the main project .
Is there any way to make grouped folder visible and also to show in finder?
I tried to create folders manually but it is also not working .
Thanks in advance.
No. You have to track (create) the folders both in xocde and in finder manually.
You can create folder in finder and then can import that folder in xcode.
The folder you make in xcode is identical to the finder.
So, the folder that you will make in finder, will be the original tree structure for your project.
you have to physically create your folders first in order to find that folder in finder. do following steps :
Go to Project Folder.
Create new folder.
Go to opened project in xcode. Right click on project folder visible in left panel.
Add Files to "your project Name".
Select your folder and uncheck copy items to destination'folder
Done.
Thanks,
If you create a folder or group in X-Code it does not actually create physical folder in the file system of your MAC instead it manages a group with in the x-code project file with files you added to that group.In other words as mentioned in the above answers you need to create the physical folder in projects root directory and add to x-code to get the behavior you are looking for.

Create a folder inside the .app file

I need to create a folder for some images, I'm doing it right now using "New Group", inside the Project Navigator of my Xcode Project.
The problem comes when I see the contents of the .app package, and inside it the images are with all the other files (not inside my folder)
How can I create a folder that will be inside of the .app?
1. Create a folder with the images.
2. While adding into the Xcode you drag and drop the folder and choose the option "Create folder references for any added folders".
The folder will be in blue color, not yellow.
Create a folder in you project folder, add image to that folder and then add them to Xcode.

Is there an equivalent of "Add existing file" (to project) in Eclipse?

I am trying to map my Visual Studio experience onto Eclipse. Right now, I wish to add a file existing somewhere on the file system into a project in Eclipse. I expect it to be copied to the project source folder.
Currently, I see only one way - switch to the windows explorer (total commander, in my case) and copy the file myself, after which to refresh the project.
Can I do the same without leaving the Eclipse IDE?
Thanks.
I had the same problem, but found yet another solution.
Let me state my problem so that we're sure we're talking about the same thing.
I had a file in a directory where a bunch of code files were and some of the files in that directory were shown as "in my project" and some of the files were missing. I wanted the missing files to appear in my project.
I simply selected the folder in my project and pressed 'F5' or right-clicked and selected 'refresh' and the files appeared in my project. It looks like that is the intended way of doing this.
File->Import->General->File System should do it.
There you can select the file(s) from some file system folder to your project (into folder).
Even easier. Just drag and drop the file from explorer into the correct package in Eclipse. It will ask you if you want to copy or link the file(s).
I am a newbie to Eclipse Luna (the 64 bit latest version on Windows 7) but this worked for me:
Copy the preexisting source files you which add to your project.
In Project Explorer, right click your project and select New > File
In the "New File" dialog box, your project's name / folder should be displayed as the parent folder for your new (existing) source file.
Click on the "Advanced" button at the bottom of the "New File" dialog box.
Check the "Link to file in the file system" checkbox.
Click the "Browse" and browse to your preexisting source.
Click the "Finish" button at the bottom of the dialog box.
In my case, I had to:
right-click the project's name
choose "Close Project"
right-click the (now closed) project's name again
choose "Open Project"
Refreshing didn't work for me. :(
Hopefully this helps someone else...
Just found the quickest way to add files:
Copy-paste your file into your project disk directory using your file browser.
In Eclipse project browser select your project.
Click [right mouse button]->Refresh (or press F5 on Windows machine).
Voila
(worked on Neon-4.6.2)
I just got this to work. YMMV
I don't suppose it has to be there, but I put my file, xyz.cpp, into my project's source directory. My project has a source subdir named src, as in ProjName/src.
Right Click on project name (my project was open and the only one open).
NEW->FILE. Put in the filename, xyz.cpp. Click OK or press enter.
The file will open in the editor and complain that it is empty. Close it WITHOUT SAVING.
Reopen the file. It now has its contents.
It turns out that just simply dragging the files into the src folder would work!
Right-click on the file after you have copied it into the project directory. Select Properties... in the left hand pane select C/C++ Build. There will be a checkbox "Exclude resource from build" uncheck that check box.