有没有一种便携式方法可以在R中获取空设备?
目前我正在这样做:
dev.null <- ifelse(.Platform$OS.type == "windows", "NUL:", "/dev/null")
后来我可以例如sink(dev.null)
或try(..., outFile = dev.null)
.
然而,这对我来说似乎不是很强大。有没有更好的方法?
这个线程很旧,但是这是我在谷歌搜索这个主题时发现的第一个线程,所以我认为可能值得一提的是 nullfile。
nullfile() 返回一个字符串,它是 "/dev/null",但在 Windows 上它是 "nul:">
从 R 版本 3.6.0 开始,此函数在基命名空间中可用。否则,您可以在 R.utils 包中找到它
sink(nullfile())
print("I am about to be tossed into the void, irrespective of the OS this is run on")
sink()