The previously accepted answer:
File.SetAttributes(path, FileAttributes.Hidden);
will result in certain other attributes it may have being lost, so you should:
File.SetAttributes(path, File.GetAttributes(path) | FileAttributes.Hidden);
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…