我正在尝试在文本框中显示一个文档(名为zzz.txt,它显示在底部),并将其放在debug文件夹(TextViewerthingy> obj> Debug)中,并使用了{{1} }的位置,这显然是不正确的。我已经在其他项目中正确使用了
historydf %>%
group_by(ID) %>%
summarise(ss = paste(col2, collapse = "")) %>%
rowwise() %>%
mutate(score = sum(sapply(combn, function(x) sum(grepl(x, ss))))) %>%
ungroup() %>%
filter(score == max(score)) %>%
pull(ID)
#[1] 3
给我一个错误,指出文件不存在。这是位置,在这种情况下我做错了什么?
C:\ Users \ Notshowingmyname \ source \ repos \ TextViewerthingy \ TextViewerthingy \ bin \ Debug
答案 0 :(得分:0)
试试这个:
Imports System.IO
Dim filename as string = Directory.GetCurrentDirectory() + "\zzz.txt"
或第二种选择:
filename = My.Computer.FileSystem.CurrentDirectory + "\zzz.txt"
确保文件名和扩展名正确。