有关 Windows PowerShell 的帮助
我正在尝试访问文本文件的方法,我首先使用此方法:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您在这里有几个选择。首先是使用括号将命令转换为表达式:
另一个选项是在管道中使用 Foreach-Object(别名为 foreach)对管道对象执行任意脚本,其中每个管道对象由特殊变量
表示$_
例如:You have a couple of options here. First is to turn the command into an expression by using parens:
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.: