有关 Windows PowerShell 的帮助

发布于 2024-09-06 14:58:51 字数 179 浏览 1 评论 0原文

我正在尝试访问文本文件的方法,我首先使用此方法:

Get-Item file.txt | get-member

然后我想使用 GetType() 方法,但它说它无法将 file.txt 识别为 cmdlet、函数、脚本的名称文件或可操作问题。我需要访问该方法或任何其他方法:D

I'm trying to access a method of text file, I use this first:

Get-Item file.txt | get-member

Then I would like to use the GetType() method, but it says it doesn't recognize file.txt as the name of a cmdlet,function,script file or operable problem. I need to access that or any other method :D

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

相思碎 2024-09-13 14:58:51

您在这里有几个选择。首先是使用括号将命令转换为表达式:

(Get-Item file.txt).GetType()

另一个选项是在管道中使用 Foreach-Object(别名为 foreach)对管道对象执行任意脚本,其中每个管道对象由特殊变量 表示$_ 例如:

Get-Item file.txt | Foreach {$_.GetType()}

You have a couple of options here. First is to turn the command into an expression by using parens:

(Get-Item file.txt).GetType()

The other option is to use Foreach-Object (aliased to foreach) in the pipeline to execute arbitrary script against pipeline objects where each pipeline object is represented by the special variable $_ e.g.:

Get-Item file.txt | Foreach {$_.GetType()}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文