Dim sourcefile = "z.txt" Dim destinationfile = "x.txt" Using sw As IO.StreamWriter = IO.file.CreateText(sourcefile) sw.Write("testing") End Using IO.file.SetAttributes(sourcefile,IO.fileAttributes.Readonly) DeBUG.Writeline("Source file Readonly = " & (IO.file.GetAttributes(sourcefile) And IO.fileAttributes.Readonly)) IO.file.copy(sourcefile,destinationfile) DeBUG.Writeline("Destination file Readonly = " & (IO.file.GetAttributes(destinationfile) And IO.fileAttributes.Readonly))
刚刚使用Reflector我发现IO.file.copy使用了kernel32.dll的copyfile函数,该函数包含复制内容和不复制内容的文档:http://msdn.microsoft.com/en-us/library/aa363851(VS.85).aspx
总结以上是内存溢出为你收集整理的vb.net – IO.File.Copy是否复制文件属性?全部内容,希望文章能够帮你解决vb.net – IO.File.Copy是否复制文件属性?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)