Linux建立刪除檔案和資料夾

2022-08-22 15:18:09 字數 638 閱讀 6200

要想刪除和建立,需要有root許可權

[xwg@bogon ~]$ su root

密碼:[root@bogon xwg]# cd /home/a      切換到目錄a

[root@bogon a]# touch d   在目錄a下建立b檔案

[root@bogon a]# rm -f d  刪除目錄a下的b檔案

[root@bogon a]# mkdir d  在目錄a下建立d資料夾

[root@bogon a]# cd /home/a/d  切換到d資料夾下

[root@bogon d]# touch e.txt   在目錄d下建立e.txt檔案

[root@bogon ~]# cd /home/a  切換到目錄a

[root@bogon a]# rmdir d   刪除d資料夾,失敗是因為d下面還有e.txt檔案

rmdir: 刪除 "d" 失敗: 目錄非空

[root@bogon a]# cd /home/a/d

[root@bogon d]# rm -f e.txt  刪除e.txt檔案

[root@bogon d]# cd ..

[root@bogon a]# rmdir d   刪除d資料夾

[root@bogon a]#

Linux建立 刪除 檔案和資料夾

linux建立 刪除 檔案和資料夾 1 建立檔案 touch 檔名 例項如下 touch paras.txt 在當前目錄下建立檔案paras.txt touch a b c paras.txt 在已存在目錄下 a b c 下建立檔案paras.txt 2 建立資料夾 mkdir option dir...

刪除和建立linux資料夾和檔案

今天學習了幾個命令,是建立 刪除檔案和資料夾的,在linux裡,資料夾是目錄,下面說下我學習的命令。建立資料夾 mkdir 一 mkdir命令使用許可權 所有使用者都可以在終端使用 mkdir 命令在擁有許可權的資料夾建立資料夾或目錄。二 mkdir命令使用格式 格式 mkdir 選項 dirnam...

Linux 建立 刪除檔案和資料夾命令

所有使用者都可以在終端使用 mkdir 命令在擁有許可權的資料夾建立資料夾或目錄。格式 mkdir 選項 dirname通過 mkdir 命令可以實現在指定位置建立以 dirname 指定的檔名 命名的資料夾或目錄。要建立資料夾或目錄的使用者必須對所建立的資料夾的父資料夾具有寫許可權 了解linux...