gpt4 book ai didi

.net - 使用 PowerShell 将文件设置为 'Writable'

转载 作者:行者123 更新时间:2023-12-02 05:42:43 24 4
gpt4 key购买 nike

我正在尝试将一些文件设置为可写,但遇到了问题。我试过使用:

 $file = "path/to/my/file.dat"
$file = Get-Item $file
$file.IsReadOnly = $false

以及此处列出的所有内容:

How to Remove ReadOnly Attribute on File Using PowerShell?

但它仍然无法正常工作,至少我不认为这是因为当我检查文件属性时,“只读”框仍处于选中状态:

更新::

当我运行时:
$file.isReadOnly

它返回 $false ,但下面的框被明确选中?这是两个不同的东西吗?

enter image description here

我想知道我做错了什么,或者如何使它可以编辑这个文件。

最佳答案

这有效:

Get-Item -Path "path/to/my/file.dat" |
Set-ItemProperty -Name IsReadOnly -Value $false

关于.net - 使用 PowerShell 将文件设置为 'Writable',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18002235/

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