Error Message - Reading .doc within Directory

Hi,

Can anybody help a pure newbie. I want to read the text in the .doc file which is called tester but I keep getting this error. Does anyone know why?

Please.

tt <-readtext(file=Tester)

Error in list_files(file, ignore_missing, TRUE, verbosity) :
File '' does not exist.

what package is that function from?

R-Studio - The Free Version

Thanks

Thats not correct.
Because you didn't name the package I had to Google it and find the readtext entry on CRAN.

But anyway. What is the content of your Tester object?

Sorry about that.

I managed to get the 'tester' document read. I had put .doc instead of .docx. It worked then.

However, I am trying to do the exact same with 'cv' file which is also .docx but I get this error.

tester <-readtext(file = cv)
tester <- file.path(directory,"tester.docx")
tester <- file.path(directory,"cv.docx")
tester <-readtext(file = cv)

directory <-readtext(file = cv)
Error in readtext(file = cv) : object 'cv' not found
tester <- file.path(directory,"tester.docx")
tester <- file.path(directory,"cv.docx")
tester <-readtext(file = cv)
Error in readtext(file = cv) : object 'cv' not found

Any idea why this is happening?

Thanks

You are lacking an object called cv. You probably want to assign a path to that name?

But the path is the same as the 'tester'

And the cv file is located in the directory.

How do i create this path?
Thanks

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.