搜索
编程论坛
→
.NET专区
→
『 C# 论坛 』
→ [求助]怎样用代码去处文件的只读属性
标题:
[求助]怎样用代码去处文件的只读属性
只看楼主
roys168
等 级:
新手上路
帖 子:67
专家分:0
注 册:2006-6-11
楼主
问题点数:0 回复次数:5
[求助]怎样用代码去处文件的只读属性
哪位知道的朋友告诉我一下怎样用代码去除文件的只读属性,谢谢!
搜索更多相关主题的帖子:
去处
属性
文件
代码
2006-07-14 10:00
chenjin145
等 级:
禁止访问
帖 子:3922
专家分:0
注 册:2006-7-12
第
2
楼
得分:0
if(File.Exists(path)&&File.GetAttributes(path)==FileAttributes.readonly)
File.SetAttributes(path,FileAttributes)
[url=javascript:alert(1);] [div]fdgfdgfdg\" on\"[/div] [/url]
2006-07-14 10:16
roys168
等 级:
新手上路
帖 子:67
专家分:0
注 册:2006-6-11
第
3
楼
得分:0
谢谢,我试试。
2006-07-14 10:25
roys168
等 级:
新手上路
帖 子:67
专家分:0
注 册:2006-6-11
第
4
楼
得分:0
我试了,同样更改不了文件的只读属性。我的代码如下:
if (( File.GetAttributes(fi.FullName) & FileAttributes.ReadOnly) == FileAttributes.ReadOnly)
{ File.SetAttributes(fi.FullName, FileAttributes.ReadOnly); }
2006-07-14 11:27
月夜枫华
等 级:
贵宾
威 望:
12
帖 子:437
专家分:42
注 册:2006-1-2
第
5
楼
得分:0
System.IO.File.SetAttributes("d:\\aaa.txt",System.IO.FileAttributes.Archive);
改成这句看看
2006-07-14 13:11
chenjin145
等 级:
禁止访问
帖 子:3922
专家分:0
注 册:2006-7-12
第
6
楼
得分:0
以下是引用
roys168
在2006-7-14 11:27:19的发言:
我试了,同样更改不了文件的只读属性。我的代码如下:
if (( File.GetAttributes(fi.FullName) & FileAttributes.ReadOnly) == FileAttributes.ReadOnly)
{ File.SetAttributes(fi.FullName, FileAttributes.ReadOnly); }
暈死 你又把它設置為readonly 當然該不廖
FileAttributes是個enum 你想設置為甚麼屬性就寫上甚麼
[url=javascript:alert(1);] [div]fdgfdgfdg\" on\"[/div] [/url]
2006-07-14 13:18
6
1/1页
1
参与讨论请移步原网站贴子:
https://bbs.bccn.net/thread-78254-1-1.html
关于我们
|
广告合作
|
编程中国
|
清除Cookies
|
TOP
|
手机版
编程中国
版权所有,并保留所有权利。
Powered by
Discuz
, Processed in 0.124979 second(s), 7 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved