HelloMrMeseeks Asked: 2023-06-01 23:34:16 +0800 CST2023-06-01 23:34:16 +0800 CST 2023-06-01 23:34:16 +0800 CST 删除目录的内容而不删除内容 772 我想要做的是只删除文件所在的文件夹。 例如: 下载 -Folder1 --File1 -Folder2 --File2 我的目标是删除文件夹 1 和 2,并留下以下内容: 下载 -文件1 -文件2 filesystem 1 个回答 Voted Best Answer Esther 2023-06-01T23:50:24+08:002023-06-01T23:50:24+08:00 您必须先将文件移动(或复制)到父文件夹中,然后再删除子文件夹。您可以从下载文件夹中使用以下命令: mv */* . # moves all items that are in folders to the current directory rmdir */ # removes all empty directories from the current directory 从系统中的其他任何地方,只需在 之前添加完整路径*并使用完整路径而不是.,例如 mv /home/hellomrmeseeks/Downloads/*/* /home/hellomrmeseeks/Downloads/ rmdir /home/hellomrmeseeks/Downloads/*/
您必须先将文件移动(或复制)到父文件夹中,然后再删除子文件夹。您可以从下载文件夹中使用以下命令:
从系统中的其他任何地方,只需在 之前添加完整路径
*
并使用完整路径而不是.
,例如