In R, how do I verify that write.csv(my.data.frame, file='test.csv') was successful without re-reading it in again? It doesn't seem to return anything. I was thinking of doing a file.exists('test.csv') and then grabbing a timestamp before and after the write.csv() and checking that the timestamp on the file is between the two? Any suggestions?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|||
|
You may use the function
|
|||
|
|
readLinesand see if column names match (or have a more complicated test). – Roman Luštrik Nov 22 '12 at 12:23file.existson its own will work)? Or do you want to know if it was written correctly? – sebastian-c Nov 22 '12 at 12:56