Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have file located at two places.

 a = "C:/Documents and Settings/tandona/Desktop/javaSummary2.txt"  
 b= "M:\CHR\Statistics\Projects\NIEHS-NTP_Task1\Work\Genomics\Dmitry_Gordenin\Final-R-Scripts\hg19.chrom.size

I can read the file at M drive but not the one at C drive, because there is space in "Documents and Settings". I get following error:

>read.csv(as.character(a),sep = "\t", header = TRUE, comment.char = "",check.names = FALSE, quote="")
Error in file(file, "rt") : cannot open the connection
In addition: Warning message:
In file(file, "rt") :
  cannot open file 'C:/Documents and Settings/tandona/Desktop/javaSummary2.txt': No such file or directory

How can I read the file having special characters?

My bad, it was two part of the code. Front end is in java and it had the bug. R is working fine now.

share|improve this question
Why a is a path to hg19.chrom.size and error says about javaSummary2.txt? – Marek Oct 15 '12 at 19:33
Why are you asking about read.csv when your code has read.table? – Carl Witthoft Oct 15 '12 at 19:37
My bad, I copied from my code and copied the wrong part and filename – user1631306 Oct 15 '12 at 19:39

closed as too localized by GSee, duskwuff, Martijn Pieters, casperOne Oct 17 '12 at 17:57

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

2 Answers

You don't need as.character(a) because a is already a string. The error message is quite explicit -- so clearly the whitespace in the pathname is not your problem.

As @Marek pointed out, the contents of your variables do not seem to be what you think they are.

share|improve this answer

Are you sure that file exists? What you got if you type:

file.exists("C:/")
file.exists("C:/Documents and Settings")
file.exists("C:/Documents and Settings/tandona")
file.exists("C:/Documents and Settings/tandona/Desktop")
file.exists("C:/Documents and Settings/tandona/Desktop/javaSummary2.txt")

?

You could use path completion to check file paths. Go to R-console, type "C:/ and hit TAB twice, you will see all possible paths. You could write "C:/Docu and hit TAB twice which should expand to "C:/Documents and Settings/. In that way you could locate where you file is hiding.

share|improve this answer
Its my bad. My java front end had bug, which was returning half path. R is working fine. – user1631306 Oct 15 '12 at 22:09

Not the answer you're looking for? Browse other questions tagged or ask your own question.