Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
2answers
1k views

iPhone: Once I have redirected NSLog to a file, how do I revert it to the console?

I'm using: #if TARGET_IPHONE_SIMULATOR == 0 NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES); NSString *documentsDirectory = [paths ...
1
vote
4answers
98 views

I have debug it for 4 hours,but I still can't find the BUG

This is program is input some string from a file, then, push strings into LineBuf one by one, after we push one string into LineBuf, print LineBuf,then, make LineBuf empty. This is my code: #include ...
1
vote
1answer
468 views

freopen_s on stdout causes problems with GetConsoleScreenBufferInfo on Windows

To temporarily redirect stdout to a file, I'm doing: printf("Before"); freopen_s(&stream, "test.txt", "w", stdout); printf("During"); freopen_s(&stream, "CONOUT$", "w", stdout); ...
0
votes
3answers
108 views

system(“pause”) won't work with freopen

See below in comment. int main(){ //freopen("input.txt","r",stdin);//if I uncomment this line the console will appear and disappear immediately int x; cin>>x; ...
0
votes
1answer
66 views

How can i use freopen() to redirect stdout & stdin in thread vise log-file in multi-thread application?

Extened question from In multi thread application how can i redirect stderr & stdout in separate file as per thread? see some how i want to keep all printf and error/warning message produced in ...
0
votes
1answer
66 views

C/C++ streams and files

I have the following code: int checkCorrectness(int i,char *iStr) { if(atoi(iStr) == i) return 1; return 0; } void foo(int i) { printf("inside foo %d\n",i); } void print() { char ...
0
votes
2answers
100 views

Want to write in stdout after closing the file opened using freopen

I'm using fork(). However, before executing fork(), I open a file (say a.txt) using freopen for writing. Now the child process redirects the output of execlp to a.txt. After terminating the child ...
0
votes
2answers
208 views

Giving freopen() and stderr a buffer (restricting size of a log file for iOS app)

I'm currently redirecting NSLog() output to a file using a call to freopen() from the App Delegate. I would like to restrict the log file size, but doing this- unsigned long long fs = 3000; while ...
0
votes
3answers
144 views

Output into file and command line

I read about freopen to redirect all printf to a file, but I would like the output to be printed on the screen as well. Is there an easy way to redirect the printfs to a file and get the cmd line ...
0
votes
2answers
207 views

Equivalent of freopen in Java

Please suggest a method to obtain a similar behaviour in Java as when we do freopen("filename","r",stdin) OR freopen("filename","w",stdout) in C.