短时间后,我设法创建了一个脚本,该脚本从一台服务器复制到另一台服务器,然后用日期和时间重命名该脚本,然后它将文件移动到另一位置。 我不断收到错误消息,但我不确定是怎么回事
@Bean
public IntegrationFlow inboundChannel(ConnectionFactory connectionFactory) {
return IntegrationFlows.from(Amqp.inboundAdapter(connectionFactory, queueName) // inboundAdapter requires a queue name but not clear about this config
.errorChannel("errorChannel")
.id("channelId1")
.autoStartup(false))
.transform(Transformers.fromJson(ResponseData.class))
.log()
.handle("Service1", "Service1")
.get();
}
错误是“ Move-Item:找不到路径'C:\ WINDOWS \ system32 \ test.csv_20200513-132035.xlsx',因为它不存在。 在线:17字符:6 + Move-Item -path $ server2-目标“ C:\ Users \ nicolae.calimanu ...”
有什么想法吗?