3

我正在尝试使用以下命令将日志文件的内容复制到另一个日志文件:

type \\server\f$\Test path\Test.log >> \\server2\f$\Logs\Testpath\Test.log

这在路径中一直有效,但最近我已将位置(路径)更改为 Test.log。路径稍长。我现在收到一个错误:

系统找不到指定的文件

我用谷歌搜索了这条语句,常见的回答是:1)检查文件名是否存在,2)检查文件名是否损坏 3)检查服务器是否在线。

我已经完成了这一切。路径可以包含的字符数是否有限制?如果有那么有解决方法吗?

更新 12/07/2012 09:49 GMT 在路径周围添加引号似乎可以解决问题。为什么添加引号可以解决问题?

4

2 回答 2

4

问题是源路径中有一个空格。在路径周围添加引号解决了这个问题。

于 2012-07-12T09:02:48.593 回答
0

Type is to examine a file, not to copy.

Also, if server is an actual server and not a folder, then you should be using two slashes (\server\share)

Example:

 copy \\server\f$\Sourcepath\Test.log  \\server2\f$\Logs\Destpath\Test.log /y

http://www.microsoft.com/resources/documentation/windows/xp/all/proddocs/en-us/ntcmds.mspx?mfr=true

于 2012-07-11T16:35:32.403 回答