指定服务器目录中的 Rsync 特定列出的文件

Rsync Specific Listed Files from specified Server Directory

我想将特定服务器文件夹中的指定文件同步到我的本地目录(我在其中 运行 命令)。

但是,我得到错误失败:没有这样的文件或目录 (2)。我的语法似乎有问题,我不确定它是否正确地选择了源目录

这是我的命令...

rsync -az . remoteSite.com::remoteFolder/remoteSubFolder/ --files-from=filelist.txt

filelist.txt,它似乎正在查找,包含 remoteSubFolder

中的文件名
file1.xml
file2.xml
etc

我做错了什么?

感谢@Gordon Davisson。

我现在明白句号代表本地目录,在远程主机和目录之后。

rsync -az --files-from=filelist.txt remoteSite.com::remoteFolder/remoteSubFolder/ .