>>112で気になったんだけどさ、NTFSボリュームのルートディレクトリって常に隠し&システム属性付いてないか?
attribで見れんけどxcopyはその属性もコピーしてるような
検証スクリプト
Const ReadOnly = 1
Const Hidden = 2
Const System = 4
Const Archive = 32
Set objFolder = WScript.CreateObject("Scripting.FileSystemObject").GetFolder("C:\")
If objFolder.Attributes AND ReadOnly Then
MsgBox "読み取り専用属性"
End If
If objFolder.Attributes AND Hidden Then
MsgBox "隠しファイル属性"
End If
If objFolder.Attributes AND System Then
MsgBox "システムファイル属性"
End If
If objFolder.Attributes AND Archive Then
MsgBox "アーカイブ属性"
End If