Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~91 People Reached
Favorite Forums

1 Posted Topic

Member Avatar for Flyleafian

I am writing a program that will constantly be reading information from a disc in the disc drive. To accomplish this, I am using the following code. [CODE] if (Directory.Exists(@"D:\")) { DirectoryInfo LookingAtDir = new DirectoryInfo(@"D:\"); FileInfo[] Files = LookingAtDir.GetFiles("*.txt"); foreach (FileInfo IndividualFile in Files) { File.ReadAllBytes(IndividualFile.FullName); File.ReadAllLines(IndividualFile.FullName); File.ReadAllText(IndividualFile.FullName); } …

Member Avatar for kvprajapati
0
91

The End.