answersLogoWhite

0

There are a number of ways. Probably the simplest is to open a folder window (My Computer or Windows Explorer) for the folder in which you want to create a sub-folder. Right click in a blank area of the file list pane, and move the mouse to New. Select Folder in the sub-menu. A sub-folder called New Folder, with the name highlighted (selected), will be created. Type the name you want for your sub-folder, then press Enter. This will replace New Folder as the name of the sub-folder.

User Avatar

Wiki User

12y ago

What else can I help you with?

Related Questions

What is a sub folder and a sub level folder?

A sub folder is when you put a folder in another folder and a sub level folder is when you put more than one sub folder in another sub folder.....


What is folder in computer science?

collection of files in computer we create folder any reprogramming


How do you create a file and not a folder?

Depends on your type of computer windows if you click on new you should see create folder in the folder you can create a file


How many sub-sub folders can be created in a folder. you mean folder inside another folder which in turn is inside another folder and so on?

You can make about 5 sub-sub folders in another folder.


Differentiate between a sub-folder and a file folder?

The sub folder is a folder inside the file folder. For example... The "Sample Pictures" folder is a sub folder to the "My Pictures" folder. It's pretty straight forward and simple...so hope that helps?


A folder within a folder is called?

sub folder.


How do you copy file to another computer's virtual drive?

Usually virtual machines allow to create a shared folder for file sharing with other computers including the hosting computer. Create such folder and place the in the folder, access it from virtual machine.


Need to change Bluetooth files default location in HTC ONE V?

Connect your cp to computer and move the folder downloads(with sub folder bluetooth) to your sd card


How do you create a floder in a computer?

On the desktop right click then select Properties then New Folder


Can a folder contain another folder?

Yes. The one inside is called a sub-folder.


Where are the Folders on your Computer stored for on a mac?

They can be stored in either of three places. The Macintosh HD, the desktop, or the Documents folder. To create your own folder, go to file, then new folder.


How can you create sub folder in c?

#include<stdio.h> #include<conio.h> #include<windows.h> int main() { CreateDirectory("C:\\Users\\Tareq\\Desktop\\ComputerScience",NULL); //create folder "ComputerScience" in desktop CreateDirectory("C:\\Users\\Tareq\\Desktop\\ComputerScience\\SF",NULL);//create another folder "SF" inside ComputerScience folder printf("file created"); getch(); }