作者gecer (gecer)
看板Visual_Basic
标题[VB6 ][VBA]请问 and 的问题
时间Mon Dec 15 21:40:50 2014
小弟最近参考一个更改file property的程式
http://stackoverflow.com/questions/750679/how-do-you-make-a-file-writeable-in-
vb
Dim fso As New FileSystemObject
Dim fil As File
Set fil = fso.GetFile("C:\foo.txt")
If (fil.attributes And vbReadOnly) Then
fil.attributes = fil.attributes -vbReadOnly
End If
小弟watch fil.attributes =32 如果是唯读的档案 但是为什麽
32
and 1 =0 ?
请问在这里
and的作用
--
※ 发信站: 批踢踢实业坊(ptt.cc), 来自: 111.255.25.29
※ 文章网址: http://webptt.com/cn.aspx?n=bbs/Visual_Basic/M.1418650853.A.446.html
1F:推 LPH66: 这是 bitwise and 12/15 22:07