AZCopy - 使用 /XO 参数从文件系统到 blob 存储?

AZCopy - using /XO parameter from filesystem to blob storage?

我的目标是从文件系统复制到 blob 存储,跳过任何在 blob 存储上更新或相等的文件。从 documentation 来看,这似乎可以通过使用 /XO 参数来实现。

/XO

Excludes an older source resource. The resource will not be copied if the last modified time of the source is the same or older than destination.

但是,这似乎对我不起作用。是因为源是本地文件系统而不是另一个存储帐户吗?

我已经 运行 以下命令进行测试。

AzCopy /Source:"D:\files" /Dest:https://myaccount.blob.core.windows.net/files /destkey:** /L /S /XO /V:files.txt

上面的命令有效。我通过 FTP 移动了源文件,从而重写了最后修改日期,使文件系统文件看起来更新。