Notice: On April 23, 2014, Statalist moved from an email list to a forum, based at statalist.org.
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: st: profile.do couldn't start
From
Phil Clayton <[email protected]>
To
[email protected]
Subject
Re: st: profile.do couldn't start
Date
Wed, 6 Apr 2011 08:55:23 +0930
Try removing the / from the end of your string, ie:
log using "/users/`c(username)'/documents/statalogs/$S_DATE.log/", append
becomes:
log using "/users/`c(username)'/documents/statalogs/$S_DATE.log", append
The / is telling Stata that you're providing the name of a folder rather a file name, so it's trying to open a log file with no name (.log) in a non-existent folder ( 5 Apr 2011.log/). The space at the beginning of the $S_DATE may also be a problem.
If you anticipate generating lots of such logs it's worth considering naming them something more like log-2011-04-05 (ie with a yyyy-mm-dd format) - this way it's trivial to sort them in date order.
Phil
On 06/04/2011, at 8:41 AM, Daniel Marcelino wrote:
> Why Stata couldn't start my profile.do? I'm getting the following
> error for the program below.
>
>
> file /users/DM/documents/statalogs/ 5 Apr 2011.log/.log could not be opened
>
>
> *!Version 0.1 - Daniel
> set mem 500m
> set matsize 1000
> set logtype text
> log using "/users/`c(username)'/documents/statalogs/$S_DATE.log/", append
> display "DateTime: $ S_DATE $ S_TIME"
> *
> * For searches and help try:
> * http://www.stata.com/help.cgi?search
> * http://www.stata.com/support/statalist/faq
> * http://www.ats.ucla.edu/stat/stata/
*
* For searches and help try:
* http://www.stata.com/help.cgi?search
* http://www.stata.com/support/statalist/faq
* http://www.ats.ucla.edu/stat/stata/