无法使用cp命令复制所有文件

时间:2016-06-13 06:26:51

标签: java eclipse git-bash

将目录的所有文件复制到其他文件时,在7个文件中,我只能复制5个文件 我在eclipse中做了其他两个文件的更改。但该目录包含所有这些文件:ScreenShot如下所示 这是我将要复制到其他文件的特定目录: enter image description here

在复制以上七个文件时,我只能获得5个文件。

我正在使用的命令如下所示:git bash: enter image description here

那是:

cp -r /d/dev/git-local-repo/packs/packs-importer/build/dist/* \
      /d/dev/git-local-repo/packsTest/PACTEST/packsImporter/

请帮帮我......

1 个答案:

答案 0 :(得分:0)

您可以尝试避免使用通配模式或通配符' *'而use '.' (dot)代替:

cp -r /path/to/folder/. /path/to/destination