设置网络文件的属性

发布于 2024-07-25 18:49:57 字数 323 浏览 4 评论 0原文

我想将网络中文件的属性设置为只读。

File.SetAttributes(@"\\data\ntshare\tmp\Trades_LastFileUploaded.csv", FileAttributes.ReadOnly);

一切顺利,但此后当我通过网络检查我的文件时,它仍然显示为!只读。 另外,当我尝试手动(使用文件属性)设置只读标志时。 一切顺利,但当我打开属性时,它再次变为!只读。

这可能是某种网络权限规则吗? 我可以在同一目录中创建和删除文件,为什么它会限制我设置文件属性?

有什么帮助吗?

I want to set attribute of a file in network to ReadOnly.

File.SetAttributes(@"\\data\ntshare\tmp\Trades_LastFileUploaded.csv", FileAttributes.ReadOnly);

It goes fine, but after this when i check my file over network it still appears to be !readOnly.
Also, when i try to manually (using file properties) set the ReadOnly flag. It goes fine, but when i open the properties it again becomes !readonly.

Could it be some network permission rule?
I am able to create and delete files from the same directory, why would it restrict me to set file properties?

Any help?

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

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

发布评论

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

评论(1

抠脚大汉 2024-08-01 18:49:57

是的,听起来您的用户帐户没有相关文件的写入属性权限。

Yes, sounds like your user account does not have Write Attributes right to the file in question.

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