Questions tagged [system.io.fileinfo]
77 questions
-3
votes
1 answer
How can I change the hidden attribute on a windows folder using .NET?
How can I change an attribute on an existing folder?
I have to make this folder and all files existing in it visible.
C:\Documents and Settings\%USER%\appdata
I found this code:
FileAttributes attributes = File.GetAttributes(@"C:\Documents and…

Icet
- 678
- 2
- 13
- 31
-4
votes
1 answer
Performance comparison between file.copy and filestream copy method
I have a windows application(VB.net) which involves copying a huge number of files to a specified location, and performance is the issue i need to check on.
I have two ways of doing this:File.Copy and other using Filestream.
Which one of the above…

Trupti
- 108
- 2
- 14