gpt4 book ai didi

.net - FileInfo.BaseName存在于PowerShell中,但不存在于直接的.NET中

转载 作者:行者123 更新时间:2023-12-04 16:39:42 25 4
gpt4 key购买 nike

为什么在.NET中System.IO.FileInfo对象没有BaseName属性,但是我可以通过PowerShell使用该属性,例如:

$FolderItems = Get-ChildItem -Path "C:\" | Where-Object {$_ -isnot [IO.DirectoryInfo]}

foreach ($FolderItem in $FolderItems)
{
write-host $FolderItem.BaseName
}

最佳答案

Powershell为您添加了该属性。如果在fileinfo对象上运行get-member,则可以看到它是一个脚本属性,甚至是脚本本身:

get-item testfile1.txt | Get-Member BaseName | format-list

TypeName : System.IO.FileInfo
Name : BaseName
MemberType : ScriptProperty
Definition : System.Object BaseName {get=if ($this.Extension.Length -gt 0){$this.Name.Remove($this.Name.Length -
$this.Extension.Length)}else{$this.Name};}

关于.net - FileInfo.BaseName存在于PowerShell中,但不存在于直接的.NET中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21739926/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com