如何从 Powershell 使用 FileInfo 对象

发布于 2024-07-15 10:54:32 字数 333 浏览 4 评论 0原文

我现在开始使用 PowerShell,在使用 Unix shell 很长时间之后,我想知道如何检查文件或目录是否存在。

在 Powershell 中,为什么以下表达式中的 Exist 返回 false?

PS H:\> ([System.IO.FileInfo]"C:\").Exists
False

有没有比以下更好的方法来检查文件是否是目录:

PS H:\> ([System.IO.FileInfo]"C:\").Mode.StartsWith("d")
True

I am now starting to use PowerShell and after a lot of time using the Unix shells and want to know how to check for the existence of a file or directory.

In Powershell why does Exist return false in the following expression?

PS H:\> ([System.IO.FileInfo]"C:\").Exists
False

And is there a better way to check if a file is a directory than:

PS H:\> ([System.IO.FileInfo]"C:\").Mode.StartsWith("d")
True

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

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

发布评论

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

评论(7

黎夕旧梦 2024-07-22 10:54:32

使用 Test-Path 而不是 System.IO.FileInfo.Exists

PS> Test-Path -Path 'C:\'
True

您还可以使用 -PathType 来测试该位置是否是文件或目录:

PS> Test-Path -Path 'C:\' -PathType Container
True

PS> Test-Path -Path 'C:\' -PathType Leaf
False

DirectoryInfoFileInfo 也都定义了 PSIsContainer 属性:

PS> (Get-Item -Path 'C:\').PSIsContainer
True

PS> (Get-Item -Path 'C:\windows\system32\notepad.exe').PSIsContainer
False

Use Test-Path instead of System.IO.FileInfo.Exists:

PS> Test-Path -Path 'C:\'
True

You can also use -PathType to test whether the location is a file or directory:

PS> Test-Path -Path 'C:\' -PathType Container
True

PS> Test-Path -Path 'C:\' -PathType Leaf
False

DirectoryInfo and FileInfo also both define a PSIsContainer property:

PS> (Get-Item -Path 'C:\').PSIsContainer
True

PS> (Get-Item -Path 'C:\windows\system32\notepad.exe').PSIsContainer
False
盛夏尉蓝 2024-07-22 10:54:32

在 Powershell 中,为什么 Exist 在以下表达式中返回 false?

 PS H:>   ([System.IO.FileInfo]"C:\").存在 
    

因为没有名为“C:\”的文件 - 它是一个目录。

In Powershell why does Exist return false in the following expression?


PS H:> ([System.IO.FileInfo]"C:\").Exists

Because there is no file called "C:\" - it's a directory.

心作怪 2024-07-22 10:54:32

除了Michael的回答之外,您还可以使用进行测试:

PS H:> ([System.IO.DirectoryInfo]"C:\").Exists
True

In addition to Michael's answer you could also test using:

PS H:> ([System.IO.DirectoryInfo]"C:\").Exists
True
烟凡古楼 2024-07-22 10:54:32
Help Test-Path

Test-Path Determines whether all elements of a path exist

Test-Path -PathType Leaf C:\test.txt
Test-Path -PathType Container C:\
Test-Path C:\
Help Test-Path

Test-Path Determines whether all elements of a path exist

Test-Path -PathType Leaf C:\test.txt
Test-Path -PathType Container C:\
Test-Path C:\
走野 2024-07-22 10:54:32

这两个评估结果均为 true

$(Get-Item "C:\").GetType() -eq [System.IO.DirectoryInfo]
$(Get-Item "C:\test.txt").GetType() -eq [System.IO.FileInfo]

Both of these evaluate to true

$(Get-Item "C:\").GetType() -eq [System.IO.DirectoryInfo]
$(Get-Item "C:\test.txt").GetType() -eq [System.IO.FileInfo]
娇柔作态 2024-07-22 10:54:32

您可以使用 Get-Item 允许 PowerShell 在 FileInfoDirectoryInfo 之间进行选择。 如果路径未解析到某个位置,它将引发异常。

PS> $(Get-Item "C:\").GetType()

IsPublic IsSerial Name                                     BaseType
-------- -------- ----                                     --------
True     True     DirectoryInfo                            System.IO.FileSystemInfo

如果您需要 DirectoryInfoFileInfo 条目(如果确实存在),我只会在 Test-Path 上使用它。

You can use Get-Item to allow PowerShell to select between FileInfo and DirectoryInfo. It will throw an exception if the path doesn't resolve to a location.

PS> $(Get-Item "C:\").GetType()

IsPublic IsSerial Name                                     BaseType
-------- -------- ----                                     --------
True     True     DirectoryInfo                            System.IO.FileSystemInfo

I would only use this over Test-Path if you will need the DirectoryInfo or FileInfo entry if it does exist.

沉睡月亮 2024-07-22 10:54:32

我使用 get-item 看到了上面的最佳答案,但原始问题使用了 [System.IO.FileInfo],所以我将提出一个答案。

[System.IO.FileInfo]“C:\Users\carsonk” | select *

上面将显示默认表视图中未显示的大多数可用属性。 有一些 PS 内置属性,例如 PSISContainer,不会通过 select 显示 *

PSISContainer 不适用于 [System.IO.FileInfo],因此

If(([System.IO.FileInfo]"C:\Users\carsonk").directory) {$True}
True

I see the best answer above using get-item, but original question used [System.IO.FileInfo] so I'll pose an answer.

[System.IO.FileInfo]"C:\Users\carsonk" | select *

Above will show most of the available attributes not shown in the default table view. There are some PS built-in attributes such as PSIsContainer that won't show by select *

PSIsContainer is not available with [System.IO.FileInfo] so

If(([System.IO.FileInfo]"C:\Users\carsonk").directory) {$True}
True
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文