我想知道如何在 vb.net 中为文件设置属性
当我打开命令提示符并输入此内容时,我可以设置属性
attrib +a +h +s test.txt
我究竟如何在 vb.net 上做到这一点
尝试这个:
File.SetAttributes(path, File.GetAttributes("test.txt") Or FileAttributes.Archive)
File.SetAttributes(path, File.GetAttributes("test.txt") Or FileAttributes.Hidden)
File.SetAttributes(path, File.GetAttributes("test.txt") Or FileAttributes.System)
私有子 GAttrib(fpath 作为字符串)
'获取属性:'fpath 必须包含完整路径和文件名 ex: C:\Test.txt MsgBox(File.GetAttributes(fpath).ToString)
设置/更改属性: File.SetAttributes(fpath, FileAttributes.Archive 或 FileAttributes.Hidden 或 FileAttributes.System 或 FileAttributes.ReadOnly)
'您可以使用单个属性或上述组合。'如果要检查新属性,请重复 msgbox MsgBox(File.GetAttributes(fpath).ToString)
结束子