How to create a folder in the computer section. Creating a new folder on Windows. Create or re-create a directory

A variety of items are stored on computer disks. And you have to know them. A folder is, one might say, something without which work in operating system cannot pass comfortably. But not every user is really familiar with this object. Let's try to fix the situation and find out about him as much as possible. So, let's begin! After all, there is a lot of interesting and useful information on this topic.

Performance

The folder is, as it was said, one of the elements of the computer, which is known to everyone. Perhaps, in real life, and so it is clear what this is a kind of document storage. Oddly enough, the situation is similar with a computer.

A folder is a repository for documents and other folders. Serves for the orderly storage of information on the hard disk, as well as for easy search required files user. So if you need to hide something, or sort the data into categories, this object will be very useful. Most often, folders are placed on the desktop along with shortcuts, and also nested inside each other like nesting dolls.

Creature

The second interesting point to consider is the process of creating an object. Even a novice user is able to cope with the task. Of course, if you see a computer for the first time in your life, then the question of how to create a folder may seem difficult. But this is not the case.

First, decide where you want to place this object. For example, inside an existing folder. Or the second option will be used for a visual description of the process. So, in order to answer how to create a folder, you just need to click on a free area of \u200b\u200bthe desktop right click mice.

You will be presented with a small list of actions. Find the item "Create" there and hover over it. Now you should select "Folder". An icon with an image and its name (standard name) will appear on the desktop. As long as the area is highlighted in blue, you can type any name. If necessary, you can change it at any time without damaging the files stored inside. Ready? It remains to simply press Enter or left-click on free space... That's all - the creation is complete.

Passwords

A folder is not just an object that can contain documents. Quite often, she personifies a repository with confidential information. The best protection option in this case is to set a password. A password-protected folder in Windows can be created in several ways. Some tricks are only for advanced users.

But the simplest scenario is to restrict access. Especially if you have various accounts... Access to windows folders shown in the properties of the object in the "Security" section. Check the box "Cancel general access to the folder ".

Now confirm your intentions. You will see a window where you can type the password and re-enter it to complete the process. Save the changes and the password-protected folder is ready. Henceforth, when you try to open it, the computer will ask you for an access password. If you fail, you can try again and again.

In addition, anyone can set a password for the folder using additional content. For example, Instant Lock. Download, install, mark the desired folder, create a password and save the changes - nothing complicated. But it's better not to use third-party content in such a simple matter. There is no guarantee that the software used will not infect the operating system.

Visibility

Did you know that folders on your computer have visibility settings? For example, this object can be normal and hidden. With all this, the contents of the folder remain in the operating system and do not go anywhere. It will simply be hidden from prying eyes.

In order to carry out the idea of \u200b\u200bcreating hidden folders, you will have to refer to the properties of the object. Click on the right mouse button when the cursor is on the desired object and select "Properties". You will have a window with several tabs. We need a "General" section.

Pay attention to "Attributes". If you check the box next to "Hidden" and then save the changes, the folder will become hidden. To complete the steps, configure the display of these objects in the operating system.

Control panel to help

These actions are carried out using the computer control panel. It is enough to visit this service (it is in the "Start" menu) and select the "Folder Options" line there.

After that, you will see a window with several tabs appear on the screen. Go to "View" and take a close look at the "Advanced options". This is where the display of hidden documents is configured. If you have the initial parameters set, then all hidden objects will simply become semi-transparent. And folders too. But the user can still see them.

But the situation can be remedied. Find the section " Hidden files and folders. "In it, check the box" Do not show hidden objects ". Now save the changes and see what happened. The folder, which was assigned the title of hidden, will disappear. You can see it again only after checking the" Show hidden objects "checkbox in" Additional parameters "of the control panel (service" Folder options "). As you can see, there is nothing complicated in this. Practice a few times - and everything will become clear and memorable to you.

Badges

On a computer, a folder is an object that can be configured to appear in the operating system. In other words, change standard icon whatever you want. Initially, all folders on the computer are created with the image of a folder for papers.

In order to change the display shortcut, go to the properties of the folder, and then go to the "Settings" section. At the very bottom of the window there will be an item "Icons". Click on "Configure". Next, select the appropriate image from the proposed ones and save the changes. If the desired picture is stored in a specific place, then find it, specify the path using, select it in the "Settings" menu and save the changes.

Look at the result. The folder icon has changed. Nothing complicated, right? This way you can decorate your desktop and give special folders your own style.

Creating a folder is not like that difficult processand most probably know how to do it. However, there are several ways to create a new folder, and each applies under certain conditions. You can create a folder either on your desktop or somewhere on disk. On the desktop, the folder is always at hand, but it will take up space on the system disk. Therefore, if the folder is designed for storing heavy files, then it is better to go to the disk directory on the computer, which has a lot of space, and create a folder there. In this article, we will explain three ways to create a folder on your computer.

How to create a folder using the GUI

The easiest way to create a folder is to right-click on an empty field, be it a desktop or a folder.

In the menu that opens, move the cursor to the "New" item and select "Folder".

Then enter the folder name and press “Enter”. If you need to change the name of the folder, double-click (with a pause between clicks) on the name, and when it is highlighted in blue and the cursor appears, enter the new name and press “Enter”.

Alternatively, you can right-click the folder and select Rename.

You can create multiple folders within a folder. For instance, a shared folder called “Vacation photos”, and inside the folder “photos from the sea”, “photos in the mountains”.

How to create a folder using the command line

The use of the command line is gradually fading into the background, many tasks are much easier to perform using the graphical interface. However, sometimes you just can't do without the command line. On the command line, you can perform absolutely all tasks, including creating new folder on the computer. To do this, press the key combination “Win \u200b\u200b+ R” and enter “cmd” in the field.

Let's use the MD command to create a new folder. It looks like this:

In this case, C: \\ is the place where the folder was created, it can also look like C: \\ ... \\ ... \\ if you want to place the folder deeper into the directory. Name - the name of the created folder. After writing the command, press “Enter”, the folder has been successfully created.

Result:

How to create a folder using powershell

Using powershell language, you can also create a new folder on your computer. Typically this method is used when writing scripts. Script is a script that administrators write to automate system administration. After launching it, the execution of the commands specified in it will begin. For example, you can make a script that will automatically create a new folder on your computer every day.

So, open notepad or any other text editor... In the window that appears, write the following command:

New-Item -Path "C: \\ New Folder" -ItemType Directory

We save this file in the * .ps1 extension. After that, we run the resulting script by double-clicking, the New Folder will be created on the C drive. Of course, you will hardly use this feature for everyday tasks, but when writing scripts this is one of the main functions.

Result:

How to create a folder on the desktop

As we stated earlier, creating a folder is not a complicated process. For this:

1) Go to the desktop by minimizing all windows.

2) Now right-click on an empty space on the desktop.

3) In the window that appears, select the item "Create", and then "Folder".

Outcome

Creating a folder on your computer is no longer difficult. We are used to creating them literally in two clicks using a graphical interface. However, sometimes it becomes necessary to create a folder via command line or powershell. When writing a script in powershell language, the command we specified is usually just one line of a large code of a full-fledged script. Now that you know how to create a folder on your computer, you can use a simple graphical interface, or practice two more complex and interesting ways.

SEE ALL!

WHAT IS THE ARTICLE ABOUT?

Two methods:

  • Windows
  • Mac

This article describes how to create a new empty folder on Windows or Mac computers.

Method 1. Windows

The simplest example is your computer's desktop, but you can create a folder anywhere on your computer.

  • You can open File Explorer by clicking the Start menu titled "Windowsstart.png" and type "file explorer" and then click "Image titled WindowsFileExplorer.png Explorer" at the top of the Start menu. From there, you can select any folder to open from the left panel.

2. Right click on an empty space

This opens a drop-down menu. Make sure you don't right click on the file or folder as this will open the wrong dropdown menu.
If you are in an existing folder (for example, Documents), you can also click the Home tab at the top left of the Explorer window and click New Folder in the toolbar that appears.

  • If you are using a computer with a trackpad instead of a mouse, click the joystick with two fingers to right-click.

3. Select "Create"


  • This option is at the bottom of the drop-down menu and opens another pop-up menu.

4. Click "Folder"


  • It's at the top of the pop-up menu.

5. Enter a name for your folder and press ↵ Enter

This creates a folder with its new name.

  • The folder name cannot contain any special punctuation marks or other characters.
  • If you don't type a name, your folder will be saved as "New Folder".

Method 2. Mac

1. Go to the area where you want to create the folder


  • Your Mac's desktop is usually the easiest place to create a folder, but you can create a folder just about anywhere.
  • You can open the Finder, which looks like a blue face at the bottom of the screen, and then go anywhere you want to create a new folder, like Documents.

2. Click "File"


  • This menu item is on the top-left side of your Mac's screen.

3. Click "New Folder"


  • This will create a new folder at your current location.
  • You can also right-click on a blank space with your mouse, or two-finger click on a computer with a trackpad. Make sure you don't right click on the file or folder, as this will open the wrong dropdown menu.

4. Enter a name for your folder and press ⏎ Return


  • This will create a new folder with its new name.

Questions and answers

How do I move a document to a new folder?

  • Click and drag the document onto the folder icon, then release the mouse button. If a folder is open, click and drag the document into the folder window, and then release the mouse button.

How can I permanently delete a folder on my desktop in Windows 7?

  • You can then move it to the trash, then empty the trash by right-clicking and then clicking the empty trash. In some cases, this will allow you to delete it permanently from the start, just look for the uninstall option.

How can I name the new folder?

  • Right click on the file, then select "rename".

How can I rename a new folder after creating it?

  • Right click on the folder, then search for "rename", then click on it, then enter what you want and hit enter.

We are all at different levels of computer proficiency. And that's quite normal. The most important thing is never to stop developing. In this article, we will discuss one of the key features of working on a computer - creating folders.

What is a folder?

You probably understand that a computer is a storage device. But, this is clever, but in fact, our photos, music, games and many more useful things are stored on the computer. So: this is information.

The unit of information measurement for ordinary users is a file. A photo is a file, usually a song is one file, a movie is often one file. Now imagine that you went to the supermarket for groceries. Let's say you need to buy a stick of sausage, cheese, beef, onions and kefir. Let's compare each of these items to a file.

How comfortable will it be for you to carry, even to the checkout, all this in your hands? That's right, you take a basket or cart. In turn, for example, you put the onion in a bag at the very beginning, and only after that in a cart so that it does not crumble. Roughly speaking, the same thing happens on your hard drive (your computer's memory). So that files (music, photos, videos and other files) do not look like one big heap, they are combined into "carts" or folders. (They are also called directories).

Enough theory, how do you create a folder on your computer?

With operating room windows system, for example, this can be done via "Conductor"... This is a built-in program that is designed to work with files.

First you need to decide where your folder should be. For example, you decide to create a folder on your desktop. For this right-click on an empty part of the desktop, choose left-click the item "Create" and in the opened supplementary list select "Folder".

After that, we need to name the folder or leave what is written by default - "New folder". Push the button "Enter"... All our folder or "cart" has been created and now we can put any files in it.

The images below show how to create a folder on the C drive step by step.

I am very interested to know if it was possible to clearly explain how to create a folder, are there any more articles on basic computer capabilities needed? Write the whole truth in the comments!

Folders in a computer are a very useful and necessary thing with which you can more conveniently organize the storage of files on your computer. If we draw an analogy with our life, then a folder is such a closet or chest of drawers in which things (files) are conveniently stored, each in its place.

It is very simple to create a folder, it is much more important to think about what to fill it in, where to place it and how to name it, so that it is convenient and quick to search for it.

You can place the folder either somewhere on the hard drive of the computer, or directly on the desktop to receive fast access to your data. Where to place more folders is up to you. You can make more folders on your desktop, and learn to navigate. On a hard disk, you can organize a more structured and logical system, which will be slower, but more convenient to use. It is logical that it is worth creating several folders both there and there and it is simply convenient and quick to access your information. Let's learn to mean folders in different places and in different ways.


Process on hard disk

Here the whole point remains the same, but there are some differences:


Name change process

And what to do if a certain folder has been created a long time ago, but the name does not suit you. For example, users often do not bother and leave the standard name or type some random set of letters and numbers.

To change the name, we need to perform a series of completely simple actions:


Interesting!In Windows it is not possible to name a folder by the name Con, PRN, AUX and some others. There is a legend on the Internet that it was a personal desire of the creator of Microsoft, but this is just a myth. In fact, there used to be reserved names. This was done because direct access to devices is provided. Consequently, some of the names had to be unique. But to this day it is impossible to create folders with such names.

There is another interesting and simple way to create - using a keyboard shortcut


Important!If you are in a browser, or some program, then this method most likely will not work. You need to be on the desktop or in some section hard disk to create the folder successfully.