我试图从Sublime Text中运行的R脚本中读取外部文件。问题是我想读它指定相对路径(在这种情况下只是名称,因为它们在同一个文件夹中)。它工作得很完美,除非文件的绝对路径中有空格。
我的阅读代码是:
body {
margin: 0 0 0 0;
background-color: beige;
}
#pageTop {
width: 100%;
height: 450px;
background-color: tan;
}
#pageArticle {
width: 100%;
height: 1000px;
background-color: rgba(0, 0, 0, 0);
}
#siteDesc {
height: 500px;
background-color: black;
width: 1000px;
margin: auto;
}
但是如果我目前拥有文件的文件夹中有任何空格,那就让我们说..
<html>
<head>
<title>Test</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<script src="javascripts/headani.js"></script>
</head>
<body>
<div id="pageTop"></div>
<div id="pageArticle">
<div class="siteDesc">
<p id="hello"></p>
</div>
</div>
</body>
</html>
它失败了(找不到文件),但如果我删除路径中的空格或更改它,它就会起作用:
t <- read.csv('data.csv',header=F)$V1
我试图绕过它做很多绕道,试图用/Users/A/B/C D/E
和/Users/A/B/C_D/E
来解析路径但是当它是一个空间时它总是同样的问题在路上。
有什么建议吗?
答案 0 :(得分:2)
转义空格的路径,所以
[{ CenterName: null, CenterId: 0, Name: null, text: "Operations",items: [{ text: "Aruba" }, { text: "Anguilla" }, { text: "Argentina" }]}];