Home > System Tutorial > LINUX > body text

Where is the new folder in linux operating system?

下次还敢
Release: 2024-04-12 13:30:14
Original
859 people have browsed it

在 Linux 操作系统中新建文件夹可以通过命令行界面(cd + mkdir)或图形化界面(文件管理器)进行。

Where is the new folder in linux operating system?

Linux 操作系统中新建文件夹的步骤

在 Linux 操作系统中,可以通过多种方式新建文件夹。

通过命令行界面

  1. 打开终端窗口。
  2. 使用 cd 命令导航到要创建文件夹的目录。
  3. 使用 mkdir 命令创建文件夹,后跟文件夹名称。例如,创建名为 "newdir" 的文件夹:
<code>mkdir newdir</code>
Copy after login

通过图形化界面 (GUI)

  1. 使用文件管理器,例如 Nautilus 或 Dolphin。
  2. 导航到要创建文件夹的目录。
  3. 单击文件管理器菜单栏上的 "新建" 按钮或右键单击并选择 "新建文件夹"。
  4. 输入文件夹名称,然后按 Enter 键。

位置

新建文件夹的位置取决于您指定的位置。如果您在命令行界面中未指定路径,则文件夹将创建在当前工作目录中。如果您使用的是 GUI,则文件夹将创建在正在浏览的目录中。

示例

通过命令行界面创建名为 "projects" 的文件夹:

<code>cd ~/Documents
mkdir projects</code>
Copy after login

通过 GUI 在桌面上创建名为 "important" 的文件夹:

  1. 使用 Nautilus 或 Dolphin 打开桌面。
  2. 单击菜单栏上的 "新建" 按钮或右键单击并选择 "新建文件夹"。
  3. 输入 "important" 作为文件夹名称。
  4. 按 Enter 键。

这样,您便可以在指定的位置新建文件夹。

The above is the detailed content of Where is the new folder in linux operating system?. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template