linux下文件夹操作命令
May 28, 2014
linux下的文件夹操作,包括创建、删除、重命名等基本操作。
1、文件夹的创建,在当前test目录下创建一个名为itbuluoge的文件夹
[root@localhost test]# ls [root@localhost test]#
从上面我们用ls命令可以看到,当前test目录下没有任何内容。
[root@localhost test]# mkdir itbuluoge [root@localhost test]# ls itbuluoge [root@localhost test]#
使用mkdir可以创建文件夹,mkdir命令后面直接跟需要创建的文件夹
2、删除文件夹
如果文件夹是空的话,直接使用rm -R 文件夹名称就可以了。
[root@localhost test]# rm -R itbuluoge/ rm:是否删除目录 “itbuluoge”?y [root@localhost test]# ls [root@localhost test]#
如果文件夹非空的话,需要每个文件确认。
[root@localhost test]# ls itbuluoge [root@localhost test]# ls itbuluoge/ test.txt [root@localhost test]# rm -R itbuluoge/ rm:是否进入目录”itbuluoge”? y rm:是否删除普通空文件 “itbuluoge/test.txt”?y rm:是否删除目录 “itbuluoge”?y
我们在itbuluoge中新建了一个文件test.txt,此时如果要删除的话,就需要跟着目录去删除每一个文件。
(原文地址)
0 Comments