This article shall describe an approach that may be used to upload any sort of a file through a Web service from a Windows Forms application. The approach demonstrated does not rely on the ASP.NET file uploader control and allows the developer the opportunity to upload files programmatically and without user intervention. Such an approach may be useful for doing something like processing out the contents of a local message queue when Internet service is available (if the user base were mobile an...
In this article I’ll show you how to get the information relating the creation date time of files in a folder and other related information.You can get various details about the files present on the file system by using the new capabilities added in the FileInfo class. First of all the Arrtibutes property of this class is there so you can use that to find the various attributes of the specific file. There is a property named CreateTime that represents the creation time of the file. This is a rea...