当前位置:  开发笔记 > 编程语言 > 正文

重定向到'NUL'失败:FileStream无法打开Win32设备

如何解决《重定向到'NUL'失败:FileStream无法打开Win32设备》经验,为你挑选了1个好方法。

我试图从choco installAppVeyor中的命令中删除一些冗长.这是我一直在尝试(如这里建议):

if (Test-Path "C:/ProgramData/chocolatey/bin/swig.exe") {
    echo "using swig from cache"
} else {
    choco install swig > NUL
}

然而它失败了:

Redirection to 'NUL' failed: FileStream will not open Win32 devices such as
disk partitions and tape drives. Avoid use of "\\.\" in the path.
At line:4 char:5
+     choco install swig > NUL
+     ~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : InvalidOperation: (:) [], RuntimeException
    + FullyQualifiedErrorId : RedirectionFailed

Command executed with exception: Redirection to 'NUL' failed: FileStream will not open Win32 devices such as disk partitions and tape drives. Avoid use of "\\.\" in the path.

所以我的问题是有一种方法可以抑制choco installAppVeyor上PowerShell中命令的冗长程度吗?



1> Ansgar Wiech..:

nul是批处理语法.在PowerShell中,您可以使用$null,正如Mathias R. Jessen在他的评论中指出的那样:

choco install swig > $null

其他选项是管道进入Out-Nullcmdlet,在变量中收集输出,或将其转换为void:

choco install swig | Out-Null
$dummy = choco install swig
[void](choco install swig)


它不是特定于shell.它是`NUL`设备的有效本机Win32文件名.但是大多数.NET都不允许它们.
推荐阅读
yzh148448
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有