我遇到文件带有特殊字符-()的问题
我安装了S3浏览器,以查看正在生成的路径以及文件 var app = require('../server');
// this loads the accountDb configuration in ~/server/datasources.json
var dataSource = app.dataSources.db;
dataSource.automigrate('User', function(err) {
if (err) throw err;
dataSource.disconnect();
});
// this automigrates the model
dataSource.automigrate('meetup', function(err) {
if (err) throw err;
dataSource.disconnect();
});
的路径,在S3浏览器中,我看到的完整路径为
fit <- glmer(cbind(event, n-event) ~ (1|study) + stage, data = mydat3,
family=binomial(link = "logit"))
summary(fit)
es <- fixef(fit)
confint <- confint(fit)[-1,]
exp(cbind(es, confint))
es 2.5 % 97.5 %
(Intercept) 0.05082079 0.006362861 0.3405915
stage 2.39413175 1.001923435 6.1305560
在我的C#代码中,我也将路径设置为-(看起来完全一样)
IDN_PreFetch_CM_(10.17.18).xlsx
但是它不起作用,并且说密钥不存在,如果我在(abc.xlsx)这样的相同路径下尝试另一个文件,它会很好地工作。
还能看到什么?