Click here to Skip to main content
15,895,606 members

Comments by Yount_0701 (Top 54 by date)

Yount_0701 8hrs 5mins ago View    
`That can't be the underlying issue; you must be hitting an issue with the write part.`
Thank you , that's a confirm, I like this kind of talk . @Pete O'Hanlon and @CPallini
If so , something was wrong with my coding logic. I'm gonna to figure it out.
Yount_0701 8hrs 10mins ago View    
I prefer to pesume if there is a way to open a file in use by another program and read the content properly. Your suggestion may be right , but lead to different path away from my thoughts.
Yount_0701 8hrs 15mins ago View    
uh, could I tell that even if the source file in use `CopyFile` will not fail, only the destination file may cause this trouble ?
If so, I have to assume my logic problems , maybe my `CopyFile` operations did too offen which the previous procedure not done yet , new `CopyFile` comes.
After code checking , that's not supposed to happen , all `CopyFile` operations have been done in one single thread one by one , no chance happend concurrently.
Yount_0701 9hrs ago View    
My purpose is to parse the logging text generated by program A while it's working. I'm hoping there is a proper method to re-open the logging files while program A is just writing these files.
Yount_0701 9hrs ago View    
um, It's something like this
Program A writes logging text files which is a binary file programed by someone and work on my computer. I'm now using program A and I want to analysis the logging text and do something else when program A was running. Program A is using the logging file for sure and I open these files again which cause the culprit.