Page 1 of 1

Ignored case

Posted: Thu Sep 27, 2012 5:07 am
by paues
As I have written elsewhere (http://forums.eviews.com/viewtopic.php? ... 688#p20016), the command dbcreate seems to ignore the case provide by the user. The code below creates a file called temp.bnk and not, as asked for, TeMp.BnK.

Code: Select all

dbcreate(type=aremos) c:\TeMp.BnK
I see now that the same applies to other commands, e.g. logsave, which creates the file mylog.rtf and not MyLog.rtf.

Code: Select all

logsave(type=rtf) c:\MyLog.rtf
Is something you might consider fixing?

Re: Ignored case

Posted: Thu Sep 27, 2012 8:27 am
by EViews Gareth
We'll consider it for the next version.

Re: Ignored case

Posted: Mon May 13, 2013 2:10 am
by paues
For future reference: I got the answer elsewhere. The correct way to go about it is to quote the path:

Code: Select all

dbcreate(type=aremos) "c:\TeMp.BnK"