Archives for .Net framework - Page 2
Writing to a Text File
Writing to text files are useful when you want a way of permanent storage of your data. Although databases and XML files are more popular choices, text files are still…
C# System.IO.Path Class
The ;class is a utility class that has methods for constructing paths of files and directories. Although you can simply use simple string concatenation and methods, using the Path class makes it easier…
C# System.IO.DirectoryInfo Class
The ;class represents a directory in your file system. Its capabilities are similar to the ;class. You need to create an instance of DirectoryInfo class to make use of its properties…
C# System.IO.Directory Class
The ;class offers methods for creating, deleting, moving, retrieving file lists, and many more. These methods are static so you don’t need to create an instance of that class. The following…
C# System.IO.FileInfo Class
The ;class is quite similar to the ;class in that, they are used for the same purpose of manipulating a file. The difference is that FileInfo does not have static methods so you need…
C# System.IO.File Class
The ;class is a static class that exposes methods to manipulate an existing file in a directory. Such methods allow you to create, delete, open, move or copy a file. As…
Absolute and Relative Paths
Files and directories can be uniquely identified using their path names. Path names specify where files and directories are located. When specifying path names, you can either use an absolute…
C# File System
Most of the time, you will need to be able to write your data to files for permanent storage. You will also need to be able to access the file…
Validation Using Regular Expressions
Regular expression is a great way to validate data provided by a user to the fields of a form. Suppose that a user should input an age rather than a…
C# Regular Expressions
Sometimes when getting input from the user, you need to check if it follows a certain pattern. For example. consider a textbox that expects to get an email from the…