Linux:如果目标目录不存在,则复制并创建目标目录
- 2024-10-14 08:40:00
- admin 原创
- 72
问题描述:
我想要一个命令(或者可能是 cp 的一个选项),如果目标目录不存在则创建它。
例子:
cp -? file /path/to/copy/file/to/is/very/deep/there
解决方案 1:
mkdir -p "$d" && cp file "$d"
(没有这样的选项cp
)。
解决方案 2:
如果以下两个条件都成立:
您正在使用 GNU 版本
cp
(而不是 Mac 版本),并且您正在从一些现有的目录结构中复制,并且只需要重新创建它
--parents
然后您可以使用标志来执行此操作cp
。从信息页面(可在http://www.gnu.org/software/coreutils/manual/html_node/cp-invocation.html#cp-invocation或使用info cp
或来查看man cp
):
--parents Form the name of each destination file by appending to the target directory a slash and the specified name of the source file. The last argument given to `cp' must be the name of an existing directory. For example, the command: cp --parents a/b/c existing_dir copies the file `a/b/c' to `existing_dir/a/b/c', creating any missing intermediate directories.
例子:
/tmp $ mkdir foo
/tmp $ mkdir foo/foo
/tmp $ touch foo/foo/foo.txt
/tmp $ mkdir bar
/tmp $ cp --parents foo/foo/foo.txt bar
/tmp $ ls bar/foo/foo
foo.txt
解决方案 3:
简短答案
要复制myfile.txt
到/foo/bar/myfile.txt
,请使用:
mkdir -p /foo/bar && cp myfile.txt $_
这是如何运作的?
这有几个组成部分,所以我将逐步介绍所有的语法。
mkdir实用程序(如POSIX 标准中所述)用于创建目录。-p
根据文档,该参数将导致mkdir
创建任何缺少的中间路径名组件
这意味着当调用 时mkdir -p /foo/bar
,如果不存在,mkdir将创建。(如果没有,则会引发错误。)/foo
/foo/bar
`/foo`-p
列表&&
运算符(如POSIX 标准(或Bash 手册,如果您愿意)中所述)的作用是,cp myfile.txt $_
只有mkdir -p /foo/bar
成功执行后才会执行。这意味着,如果命令因多种可能原因之一cp
而失败,则不会尝试执行。mkdir
最后,$_
我们作为第二个参数传递给的cp
是一个“特殊参数”,它可以方便地避免重复长参数(如文件路径),而不必将它们存储在变量中。根据Bash 手册,它:
扩展到上一个命令的最后一个参数
在本例中,这就是/foo/bar
我们传递给的mkdir
。因此,该cp
命令扩展为cp myfile.txt /foo/bar
,它将复制myfile.txt
到新创建的/foo/bar
目录中。
请注意,它$_
不是POSIX 标准的一部分,因此从理论上讲,Unix 变体可能有一个不支持此构造的 shell。但是,我不知道有任何现代 shell 不支持$_
;当然,Bash、Dash 和 zsh 都支持。
最后说明一下:我在本答案开头给出的命令假定您的目录名称中没有空格。如果您要处理带有空格的名称,则需要将它们括起来,以便不同的单词不会被视为 或 的不同参数mkdir
。cp
因此您的命令实际上看起来像:
mkdir -p "/my directory/name with/spaces" && cp "my filename with spaces.txt" "$_"
解决方案 4:
这是一个老问题,但也许我可以提出一个替代解决方案。
您可以使用该install
程序复制文件并“动态”创建目标路径。
install -D file /path/to/copy/file/to/is/very/deep/there/file
不过,有一些方面需要考虑:
您还需要指定目标文件名,而不仅仅是目标路径
目标文件将可执行(至少就我的测试而言)
-m
您可以通过添加设置目标文件权限的选项来轻松修改#2 (例如:-m 664
将创建具有权限的目标文件rw-rw-r--
,就像使用创建新文件一样touch
)。
这是给我启发的答案的无耻链接=)
解决方案 5:
Shell 函数可以执行您想要的操作,称之为“埋葬”副本,因为它为文件挖了一个洞:
bury_copy() { mkdir -p `dirname $2` && cp "$1" "$2"; }
解决方案 6:
以下是一种方法:
mkdir -p `dirname /path/to/copy/file/to/is/very/deep/there` \n && cp -r file /path/to/copy/file/to/is/very/deep/there
dirname
将为您提供目标目录或文件的父目录。mkdir -p dirname ...
将创建该目录,确保当您调用 cp -r 时正确的基目录就位。
与 --parents 相比,它的优点在于它适用于目标路径中的最后一个元素是文件名的情况。
它可以在 OS X 上运行。
解决方案 7:
虽然已经很晚了,但可能对新手有帮助。如果你需要自动创建文件夹,rsync
它应该是你最好的朋友。
rsync /path/to/sourcefile /path/to/tragetdir/thatdoestexist/
解决方案 8:
尽管我非常尊重上述答案,但我更喜欢使用 rsync ,如下所示:
$ rsync -a directory_name /path_where_to_inject_your_directory/
例子:
$ rsync -a test /usr/local/lib/
解决方案 9:
install -D file -m 644 -t /path/to/copy/file/to/is/very/deep/there
解决方案 10:
这对我来说
cp -vaR ./from ./to
解决方案 11:
正如 help_asap 和 spongeman 所建议的,您可以使用“install”命令将文件复制到现有目录,或者如果文件尚不存在则创建新的目标目录。
选项 1install -D filename some/deep/directory/filename
将文件复制到新目录或现有目录,并赋予文件名默认 755 权限
选项 2install -D filename -m640 some/deep/directory/filename
与选项 1 相同,但赋予文件名 640 权限。
选项 3install -D filename -m640 -t some/deep/directory/
与选项 2 相同,但将文件名定位到目标目录中,因此文件名不需要同时写入源和目标中。
选项 4install -D filena* -m640 -t some/deep/directory/
与选项 3 相同,但对多个文件使用通配符。
它在 Ubuntu 上运行良好,并将两个步骤(目录创建然后文件复制)合并为一个步骤。
解决方案 12:
只需将以下内容添加到您的 .bashrc 中,如果需要,可以进行调整。适用于 Ubuntu。
mkcp() {
test -d "$2" || mkdir -p "$2"
cp -r "$1" "$2"
}
例如,如果你想将“测试”文件复制到目标目录“d”,使用,
mkcp test a/b/c/d
mkcp将首先检查目标目录是否存在,如果不存在则创建并复制源文件/目录。
解决方案 13:
只需一行即可总结并给出完整的解决方案。如果要重命名文件,请小心,您应该包含一种方法来为 mkdir 提供干净的目录路径。$fdst 可以是文件或目录。无论如何,下一个代码都应该有效。
fsrc=/tmp/myfile.unk
fdst=/tmp/dir1/dir2/dir3/myfile.txt
mkdir -p $(dirname ${fdst}) && cp -p ${fsrc} ${fdst}
或者 bash 特定的
fsrc=/tmp/myfile.unk
fdst=/tmp/dir1/dir2/dir3/myfile.txt
mkdir -p ${fdst%/*} && cp -p ${fsrc} ${fdst}
解决方案 14:
无需创建脚本,仅需简单的命令......
mkdir -p /destination-folder/ && cp file-name /destination-folder/
解决方案 15:
我强烈建议ditto
。只是有效。
ditto my/location/poop.txt this/doesnt/exist/yet/poop.txt
解决方案 16:
我为 cp 编写了一个支持脚本,称为 CP(注意是大写字母),旨在实现这一目的。脚本将检查您输入的路径中的错误(除了最后一个路径,即目标路径),如果一切正常,它将执行 mkdir -p 步骤以在开始复制之前创建目标路径。此时,常规 cp 实用程序将接管,并且您在 CP 中使用的任何开关(如 -r、-p、-rpL)都将直接传送到 cp。在使用我的脚本之前,您需要了解一些事项。
执行 CP --help 即可访问此处的所有信息。CP --help-all 包括 cp 的开关。
如果找不到目标路径,常规 cp 将不会进行复制。使用 CP 时,您没有这样的拼写安全网。您的目标将被创建,因此如果您将目标拼写错误为 /usrr/share/icons 或 /usr/share/icon,那么这就是将要创建的。
常规 cp 倾向于根据现有路径模拟其行为:cp /a/b /c/d 将根据 d 是否存在而变化。如果 d 是现有文件夹,cp 会将 b 复制到其中,形成 /c/d/b。如果 d 不存在,b 将被复制到 c 并重命名为 d。如果 d 存在但为文件,而 b 也是文件,则它将被 b 的副本覆盖。如果 c 不存在,cp 不会进行复制并退出。
CP 无法从现有路径中获取线索,因此它必须具有一些非常牢固的行为模式。CP 假设您正在复制的项目被放在目标路径中,而不是目标本身(即源文件/文件夹的重命名副本)。含义:
如果 d 是文件夹,则“CP /a/b /c/d”将导致 /c/d/b
如果 /c/b 中的 b 是文件夹,“CP /a/b /c/b”将导致 /c/b/b。
如果 b 和 d 都是文件:CP /a/b /c/d 将得到 /c/d(其中 d 是 b 的副本)。在相同情况下 CP /a/b /c/b 也一样。
可以使用“--rename”开关更改此默认 CP 行为。在本例中,假设
“CP --rename /a/b /c/d”是将 b 复制到 /c 并将副本重命名为 d。
最后再说几点:与 cp 一样,CP 可以一次复制多个项目,并将列出的最后一条路径视为目标。只要您使用引号,它也可以处理带空格的路径。
CP 会在进行复制之前检查您输入的路径并确保它们存在。在严格模式(可通过 --strict 开关使用)下,所有要复制的文件/文件夹必须存在,否则不会进行复制。在宽松模式(--relaxed)下,如果您列出的项目中至少有一个存在,复制将继续。宽松模式是默认模式,您可以通过开关临时更改模式,也可以通过在脚本开头设置变量 easy_going 来永久更改模式。
安装方法如下:
在非 root 终端中执行以下操作:
sudo echo > /usr/bin/CP; sudo chmod +x /usr/bin/CP; sudo touch /usr/bin/CP
gedit admin:///usr/bin/CP
在 gedit 中,粘贴 CP 实用程序并保存:
#!/bin/bash
#Regular cp works with the assumption that the destination path exists and if it doesn't, it will verify that it's parent directory does.
#eg: cp /a/b /c/d will give /c/d/b if folder path /c/d already exists but will give /c/d (where d is renamed copy of b) if /c/d doesn't exists but /c does.
#CP works differently, provided that d in /c/d isn't an existing file, it assumes that you're copying item into a folder path called /c/d and will create it if it doesn't exist. so CP /a/b /c/d will always give /c/d/b unless d is an existing file. If you put the --rename switch, it will assume that you're copying into /c and renaming the singl item you're copying from b to d at the destination. Again, if /c doesn't exist, it will be created. So CP --rename /a/b /c/d will give a /c/d and if there already a folder called /c/d, contents of b will be merged into d.
#cp+ $source $destination
#mkdir -p /foo/bar && cp myfile "$_"
err=0 # error count
i=0 #item counter, doesn't include destination (starts at 1, ex. item1, item2 etc)
m=0 #cp switch counter (starts at 1, switch 1, switch2, etc)
n=1 # argument counter (aka the arguments inputed into script, those include both switches and items, aka: $1 $2 $3 $4 $5)
count_s=0
count_i=0
easy_going=true #determines how you deal with bad pathes in your copy, true will allow copy to continue provided one of the items being copied exists, false will exit script for one bad path. this setting can also be changed via the custom switches: --strict and --not-strict
verbal="-v"
help="===============================================================================\n
CREATIVE COPY SCRIPT (CP) -- written by thebunnyrules\n
===============================================================================
This script (CP, note capital letters) is intended to supplement \n
your system's regular cp command (note uncapped letters).
Script's function is to check if the destination path exists \n
before starting the copy. If it doesn't it will be created.
To make this happen, CP assumes that the item you're copying is \n
being dropped in the destination path and is not the destination\n
itself (aka, a renamed copy of the source file/folder). Meaning:
* \"CP /a/b /c/d\" will result in /c/d/b \n
* even if you write \"CP /a/b /c/b\", CP will create the path /a/b, \n
resulting in /c/b/b.
Of course, if /c/b or /c/d are existing files and /a/b is also a\n
file, the existing destination file will simply be overwritten. \n
This behavior can be changed with the \"--rename\" switch. In this\n
case, it's assumed that \"CP --rename /a/b /c/d\" is copying b into /c \n
and renaming the copy to d.
===============================================================================\n
CP specific help: Switches and their Usages \n
===============================================================================
\n
--rename See above. Ignored if copying more than one item.
--quiet CP is verbose by default. This quiets it.
--strict If one+ of your files was not found, CP exits if\n
you use --rename switch with multiple items, CP \n
exits.
--relaxed Ignores bad paths unless they're all bad but warns\n
you about them. Ignores in-appropriate rename switch\n
without exiting. This is default behavior. You can \n
make strict the default behavior by editing the \n
CP script and setting:
easy_going=false.
--help-all Shows help specific to cp (in addition to CP)."
cp_hlp="
Regular cp command's switches will still work when using CP.\n
Here is the help out of the original cp command... \n
===============================================================================\n
cp specific help: \n
===============================================================================
"
outro1="
******************************************************************************\n
******************************************************************************\n
******************************************************************************\n
USE THIS SCRIPT WITH CARE, TYPOS WILL GIVE YOU PROBLEMS...\n
******************************************************************************\n
******************************* HIT q TO EXIT ********************************\n
******************************************************************************"
#count and classify arguments that were inputed into script, output help message if needed
while true; do
eval input="$$n"
in_=${input::1}
if [ -z "$input" -a $n = 1 ]; then input="--help"; fi
if [ "$input" = "-h" -o "$input" = "--help" -o "$input" = "-?" -o "$input" = "--help-all" ]; then
if [ "$input" = "--help-all" ]; then
echo -e "$help"$cp_hlp > /tmp/cp.hlp
cp --help >> /tmp/cp.hlp
echo -e "$outro1" >> /tmp/cp.hlp
cat /tmp/cp.hlp|less
cat /tmp/cp.hlp
rm /tmp/cp.hlp
else
echo -e "$help" "$outro1"|less
echo -e "$help" "$outro1"
fi
exit
fi
if [ -z "$input" ]; then
count_i=$(expr $count_i - 1 ) # remember, last item is destination and it's not included in cound
break
elif [ "$in_" = "-" ]; then
count_s=$(expr $count_s + 1 )
else
count_i=$(expr $count_i + 1 )
fi
n=$(expr $n + 1)
done
#error condition: no items to copy or no destination
if [ $count_i -lt 0 ]; then
echo "Error: You haven't listed any items for copying. Exiting." # you didn't put any items for copying
elif [ $count_i -lt 1 ]; then
echo "Error: Copying usually involves a destination. Exiting." # you put one item and no destination
fi
#reset the counter and grab content of arguments, aka: switches and item paths
n=1
while true; do
eval input="$$n" #input=$1,$2,$3,etc...
in_=${input::1} #first letter of $input
if [ "$in_" = "-" ]; then
if [ "$input" = "--rename" ]; then
rename=true #my custom switches
elif [ "$input" = "--strict" ]; then
easy_going=false #exit script if even one of the non-destinations item is not found
elif [ "$input" = "--relaxed" ]; then
easy_going=true #continue script if at least one of the non-destination items is found
elif [ "$input" = "--quiet" ]; then
verbal=""
else
#m=$(expr $m + 1);eval switch$m="$input" #input is a switch, if it's not one of the above, assume it belongs to cp.
switch_list="$switch_list \"$input\""
fi
elif ! [ -z "$input" ]; then #if it's not a switch and input is not empty, it's a path
i=$(expr $i + 1)
if [ ! -f "$input" -a ! -d "$input" -a "$i" -le "$count_i" ]; then
err=$(expr $err + 1 ); error_list="$error_list
path does not exit: \"b\""
else
if [ "$i" -le "$count_i" ]; then
eval item$i="$input"
item_list="$item_list \"$input\""
else
destination="$input" #destination is last items entered
fi
fi
else
i=0
m=0
n=1
break
fi
n=$(expr $n + 1)
done
#error condition: some or all item(s) being copied don't exist. easy_going: continue if at least one item exists, warn about rest, not easy_going: exit.
#echo "err=$err count_i=$count_i"
if [ "$easy_going" != true -a $err -gt 0 -a $err != $count_i ]; then
echo "Some of the paths you entered are incorrect. Script is running in strict mode and will therefore exit."
echo -e "Bad Paths: $err $error_list"
exit
fi
if [ $err = $count_i ]; then
echo "ALL THE PATHS you have entered are incorrect! Exiting."
echo -e "Bad Paths: $err $error_list"
fi
#one item to one destination:
#------------------------------
#assumes that destination is folder, it does't exist, it will create it. (so copying /a/b/c/d/firefox to /e/f/firefox will result in /e/f/firefox/firefox
#if -rename switch is given, will assume that the top element of destination path is the new name for the the item being given.
#multi-item to single destination:
#------------------------------
#assumes destination is a folder, gives error if it exists and it's a file. -rename switch will be ignored.
#ERROR CONDITIONS:
# - multiple items being sent to a destination and it's a file.
# - if -rename switch was given and multiple items are being copied, rename switch will be ignored (easy_going). if not easy_going, exit.
# - rename option but source is folder, destination is file, exit.
# - rename option but source is file and destination is folder. easy_going: option ignored.
if [ -f "$destination" ]; then
if [ $count_i -gt 1 ]; then
echo "Error: You've selected a single file as a destination and are copying multiple items to it. Exiting."; exit
elif [ -d "$item1" ]; then
echo "Error: Your destination is a file but your source is a folder. Exiting."; exit
fi
fi
if [ "$rename" = true ]; then
if [ $count_i -gt 1 ]; then
if [ $easy_going = true ]; then
echo "Warning: you choose the rename option but are copying multiple items. Ignoring Rename option. Continuing."
else
echo "Error: you choose the rename option but are copying multiple items. Script running in strict mode. Exiting."; exit
fi
elif [ -d "$destination" -a -f "$item1" ]; then
echo -n "Warning: you choose the rename option but source is a file and destination is a folder with the same name. "
if [ $easy_going = true ]; then
echo "Ignoring Rename option. Continuing."
else
echo "Script running in strict mode. Exiting."; exit
fi
else
dest_jr=$(dirname "$destination")
if [ -d "$destination" ]; then item_list="$item1/*";fi
mkdir -p "$dest_jr"
fi
else
mkdir -p "$destination"
fi
eval cp $switch_list $verbal $item_list "$destination"
cp_err="$?"
if [ "$cp_err" != 0 ]; then
echo -e "Something went wrong with the copy operation.
Exit Status: $cp_err"
else
echo "Copy operation exited with no errors."
fi
exit
解决方案 17:
cp
有多种用途:
$ cp --help
Usage: cp [OPTION]... [-T] SOURCE DEST
or: cp [OPTION]... SOURCE... DIRECTORY
or: cp [OPTION]... -t DIRECTORY SOURCE...
Copy SOURCE to DEST, or multiple SOURCE(s) to DIRECTORY.
@AndyRoss 的答案适用于
cp SOURCE DEST
的风格cp
,但如果你使用
cp SOURCE... DIRECTORY/
的风格cp
。
我认为“DEST”在这种用法中没有尾随斜杠会产生歧义(即目标目录尚不存在),这也许就是为什么cp
从未添加此选项的原因。
因此,这是我的版本,它在目标目录中强制使用尾随斜杠:
cp-p() {
last=${@: -1}
if [[ $# -ge 2 && "$last" == */ ]] ; then
# cp SOURCE... DEST/
mkdir -p "$last" && cp "$@"
else
echo "cp-p: (copy, creating parent dirs)"
echo "cp-p: Usage: cp-p SOURCE... DEST/"
fi
}
解决方案 18:
刚刚遇到了同样的问题。我的方法是将文件压缩到存档中,如下所示:
tar cf your_archive.tar file1 /path/to/file2 path/to/even/deeper/file3
tar 会自动将文件存储在存档中的适当结构中。如果您运行
tar xf your_archive.tar
文件被提取到所需的目录结构中。
解决方案 19:
从源复制到不存在的路径
mkdir –p /destination && cp –r /source/ $_
注意:此命令复制所有文件
cp –r
用于复制所有文件夹及其内容
$_
按照上一个命令创建的目标进行工作
解决方案 20:
使用一行代码创建一个可以用作子命令的小脚本,例如find
:
`set +H; echo -e "#!/bin/sh
mkdir -p $(dirname "$2"); cp "$1" "$2";" > ~/local/bin/cpmkdir; chmod +x ~/local/bin/cpmkdir`
然后你可以像这样使用它:
find -name files_you_re_lookin_for.* -exec cpmkdir {} ../extracted_copy/{} ;
解决方案 21:
rsync file /path/to/copy/file/to/is/very/deep/there
如果您有正确的类型,这可能会起作用rsync
。
解决方案 22:
您可以使用find
。Perl
命令如下:
find file | perl -lne '$t = "/path/to/copy/file/to/is/very/deep/there/"; /^(.+)/.+$/; `mkdir -p $t$1` unless(-d "$t$1"); `cp $_ $t$_` unless(-f "$t$_");'
$t
如果目录不存在,此命令将创建目录。然后仅复制file
到其中,$t
除非file
其中存在$t
。
解决方案 23:
这适用于 MacOS 上的 GNU /bin/bash 版本 3.2(已在 Catalina 和 Big Sur 上测试)
cp -Rv <existing-source-folder>/ <non-existing-2becreated-destination-folder>
“v”选项表示详细。
我认为“-R”选项是“递归”的。
man 对 -R 的完整描述是:
如果 source_file 指定目录,cp 将复制该目录以及与该点相连的整个子树。如果 source_file 以 / 结尾,则复制目录的内容而不是目录本身。此选项还会导致复制符号链接而不是间接复制,并且会导致 cp 创建特殊文件而不是将其作为普通文件复制。创建的目录具有与相应源目录相同的模式,不受进程的 umask 修改。
在 -R 模式下,即使检测到错误,cp 也会继续复制。
请注意,cp 将硬链接文件复制为单独的文件。如果您需要保留硬链接,请考虑使用 tar(1)、cpio(1) 或 pax(1)。
在下面的例子中,我在现有文件夹的末尾使用“/”,以便将现有文件夹的所有内容(而不是文件夹本身)复制到新文件夹中:
cp -Rv existingfolder/ newfolder
尝试一下。
解决方案 24:
许多其他解决方案对需要转义的文件或文件夹不起作用。这里有一个解决方案,它适用于文件和文件夹,并转义空格和其他特殊字符。在无法访问某些更高级选项的 busybox ash shell 中进行了测试。
export file="annoying folder/bar.txt"
export new_parent="/tmp/"
# Creates /tmp/annoying folder/
mkdir -p "$(dirname "$new_folder/$file")"
# Copies file to /tmp/annoying folder/bar.txt
cp -r "$file" "$new_folder/$file"
bar.txt
如果您省略是否需要整个文件夹的递归副本,这也应该有效。
解决方案 25:
假设你正在做类似的事情
cp 文件1.txt A/B/C/D/文件.txt
其中 A/B/C/D 是尚不存在的目录
可能的解决方案如下
DIR=$(dirname A/B/C/D/file.txt)
# DIR= "A/B/C/D"
mkdir -p $DIR
cp file1.txt A/B/C/D/file.txt
希望有帮助!
解决方案 26:
仅适用于 macOS
rsync -R <source file path> destination_folder
对于macOS,cp的 --parents 选项不起作用
解决方案 27:
(如果我的答案在这里没有被阻止...)这对 rsync 有帮助吗:
rsync --mkpath sourcedir/ destdir
如果不存在,则创建 destdir。
解决方案 28:
./assets/
使用当前日期将文件复制到其他目录
rsync -avd ./assets/ ~/backup/project_x/assets/$(date '+%Y-%m-%d')
-a Copy files from sub-dir of source dir
-d, --dirs Also copy directories
-u, --update skip files that are newer on the receiver
--inplace update destination files in-place
--append append data onto shorter files
-l, --links copy symlinks as symlinks
更多信息:
rsync [Options] [Source] [Destination]
将 x 的内容复制到 y 目录 x/a.txt y/a.txt :
rsync -av x/ y
仅将 a.txt 和 b.txt 从 x 复制到 y 目录:
rsync -av 'x/a.txt x/b.txt' y
本地到远程:
rsync [OPTION]... SRC [SRC]... rsync://[USER@]HOST[:PORT]/DEST
远程到本地:
rsync [OPTION]... rsync://[USER@]HOST[:PORT]/SRC [DEST]
从文件中忽略:
rsync -avd --delete --exclude-from=.resyncignore
man rsync
- 列出 rsync 的所有可用选项
man date
- 有关其他日期格式的更多信息
解决方案 29:
简单的
cp -a * /path/to/dst/
应该可以解决问题。
- 2024年20款好用的项目管理软件推荐,项目管理提效的20个工具和技巧
- 2024年开源项目管理软件有哪些?推荐5款好用的项目管理工具
- 项目管理软件有哪些?推荐7款超好用的项目管理工具
- 项目管理软件哪个最好用?盘点推荐5款好用的项目管理工具
- 项目管理软件有哪些最好用?推荐6款好用的项目管理工具
- 项目管理软件有哪些,盘点推荐国内外超好用的7款项目管理工具
- 2024项目管理软件排行榜(10类常用的项目管理工具全推荐)
- 项目管理软件排行榜:2024年项目经理必备5款开源项目管理软件汇总
- 2024年常用的项目管理软件有哪些?推荐这10款国内外好用的项目管理工具
- 项目管理必备:盘点2024年13款好用的项目管理软件