设置网络文件的属性
我想将网络中文件的属性设置为只读。
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,听起来您的用户帐户没有相关文件的写入属性权限。
Yes, sounds like your user account does not have Write Attributes right to the file in question.