• ベストアンサー

隠し属性

[1] if(folder.attributes AND 2) = then 処理 end if [2]if (file.attributes AND HIDDEN)=0 then 処理   end if 1と2どちらも隠し属性なら処理をするっていうことで いいのでしょうか?

質問者が選んだベストアンサー

  • ベストアンサー
  • BLUEPIXY
  • ベストアンサー率50% (3003/5914)
回答No.1

VBScript では、Hidden は、定数で2 ですので folder.attributes AND 2 と file.attributes AND HIDDEN は同じです。 >隠し属性なら処理をする ということなら (folder.attributes AND 2) か (folder.attributes AND 2)<>0 です。 =0では、逆の意味になってしまいます