无法打开要使用指定名称写入的文件,但不能使用其他名称

Unable to open file to write using specified name, but not another

我收到此代码的错误

>> save([params.datapath '/' configfilename{1}],'params')
Error using save
Unable to open file "C:\Users\Rik\Desktop\mps
project\ColdComplaintData/Data/filename-config_30-Jan-2016_20:25:46.mat" for output.

但不是这个代码

>> save([params.datapath '/' 'ddd.mat'],'params')

这是什么问题?谢谢

Windows doesn't allow filenames with colons (:) in them

The following reserved characters:
< (less than)
> (greater than)
: (colon)
" (double quote)
/ (forward slash)
\ (backslash)
| (vertical bar or pipe)
? (question mark)
* (asterisk)