欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

Microsoft® Visual Basic® Scripting Edition
Attributes ŒÙÐÔ
 ÕZ(y¨³)ÑÔ…¢¿¼
°æ±¾ 3

Õˆ(q¨«ng)…¢é†                   ‘ª(y¨©ng)ÓÃÓÚ


ÃèÊö
ÔO(sh¨¨)Öûò·µ»ØÎļþ»òÎļþŠAµÄŒÙÐÔ¡£¿É×xŒ‘(xi¨§)»òÖ»×x£¨ÅcŒÙÐÔÓÐêP(gu¨¡n)£©¡£
ÕZ(y¨³)·¨
object.Attributes [= newattributes]

Attributes ŒÙÐÔµÄÕZ(y¨³)·¨ÓÐÒÔϲ¿·Ö£º

²¿·Ö ÃèÊö
object ±Øßx¡£‘ª(y¨©ng)žé File »ò Folder Œ¦(du¨¬)ÏóµÄÃû·Q(ch¨¥ng)¡£
newattributes ¿Éßx¡£Èç¹ûÖ¸¶¨´Ë…¢”µ(sh¨´)£¬„t newattributes žéÖ¸¶¨µÄ object µÄŒÙÐÔµÄÐÂÖµ¡£

ÔO(sh¨¨)ÖÃ
newattributes …¢”µ(sh¨´)¿ÉžéÏÂÁÐÔO(sh¨¨)ÖÃÖ®Ò»»òÏÂÁÐÔO(sh¨¨)ÖõĺÏÀí½MºÏ£º

³£”µ(sh¨´) Öµ ÃèÊö
Normal 0 ÆÕͨÎļþ¡£›](m¨¦i)ÓÐÔO(sh¨¨)ÖÃÈκΌÙÐÔ¡£
ReadOnly 1 Ö»×xÎļþ¡£¿É×xŒ‘(xi¨§)¡£
Hidden 2 ë[²ØÎļþ¡£¿É×xŒ‘(xi¨§)¡£
System 4 ϵ½y(t¨¯ng)Îļþ¡£¿É×xŒ‘(xi¨§)¡£
Volume 8 ´Å±P(p¨¢n)òŒ(q¨±)„Ó(d¨°ng)Æ÷¾í˜Ë(bi¨¡o)¡£Ö»×x¡£
Directory 16 ÎļþŠA»òĿ䛡£Ö»×x¡£
Archive 32 Éϴ΂ä·ÝºóÒѸü¸ÄµÄÎļþ¡£¿É×xŒ‘(xi¨§)¡£
Alias 64 朽ӻò¿ì½Ý·½Ê½¡£Ö»×x¡£
Compressed 128 ‰º¿sÎļþ¡£Ö»×x¡£

Õf(shu¨­)Ã÷
ÒÔÏ´ú´aÅeÀýÕf(shu¨­)Ã÷ÈçºÎʹÓà Attributes ŒÙÐÔ£º
Sub SetClearArchiveBit(filespec)
  Dim fs, f, r
  Set fs = CreateObject("Scripting.FileSystemObject")
  Set f = fs.GetFile(fs.GetFileName(filespec))
  If f.attributes and 32 Then
      r = MsgBox("ÒÑÔO(sh¨¨)Öà Archive 룬ÊÇ·ñ´_¶¨Çå³ý£¿", vbYesNo, "ÔO(sh¨¨)ÖÃ/Çå³ý Archive λ")
      If r = vbYes Then 
          f.attributes = f.attributes - 32
          MsgBox "ÒÑÇå³ý Archive λ¡£"
      Else
          MsgBox "±£Áô Archive λÔO(sh¨¨)Öá£"
      End If
  Else
      r = MsgBox("δÔO(sh¨¨)Öà Archive λ¡£ÊÇ·ñ´_¶¨ÔO(sh¨¨)Öã¿", vbYesNo, "ÔO(sh¨¨)ÖÃ/Çå³ý Archive λ")
      If r = vbYes Then 
          f.attributes = f.attributes + 32
          MsgBox "ÒÑÔO(sh¨¨)Öà Archive λ¡£"
      Else
          MsgBox "δÔO(sh¨¨)Öà Archive λ¡£"
      End If
  End If
End Sub