Skip to main content

Posts

Showing posts from March, 2012

File Downloading with progress bar using Background Worker Class In C#

Downloading a file is a common task, and it is often useful to run this potentially time-consuming operation on a separate thread . Use the   BackgroundWorker  component to accomplish this task with very little code.

Application to Show the List of All Files in a Folder-Developed in C#

This Application is used to list all the files in a folder or directory . This application is developed by .NET Framework and the C# programming language. The framework provides powerful methods on the Directory class that can help you list files on the file system. The  Directory.GetFiles  method allows you to get a string array of the file names.