Wednesday, May 26, 2010

Tips & Tricks : Visual Studio

1. Disable HTML Navigation bar.

Tools -> Options -> Text Editor -> HTML –> Uncheck Navigation Bar option

2. Auto insert quotes when typing.

Tools -> Options -> Text Editor -> HTML -> Format -> Check "Insert attribute value quotes when typing"

3. Format HTML on paste

Tools -> Options -> Text Editor -> HTML -> Miscellaneous -> Format HTML on Paste

Tuesday, May 25, 2010

How To: Get File Time [C#]

To get file time information like attributes and all or when any file was created, last modified or accessed. For getting this you can get file DateTime info by using either static methods of File class or instance methods of FileInfo class.

Get file times using File class

Use File class when you want to get just one specific time, for example if you are only interested in a file last modification time. To do this use static method File.GetLastWri teTime with file path as a parameter. File class also provides static methods to get file creation time or file last access time. You can also get this times in UTC, e.g. to get file last write time in UTC use File.GetLastWri teTimeUtc.

// local times
DateTime creationTime = File.GetCreationTime(@"c:\Demo.txt");
DateTime lastWriteTime = File.GetLastWriteTime(@"c:\Demo.txt");
DateTime lastAccessTime = File.GetLastAccessTime(@"c:\Demo.txt");
// UTC times
DateTime creationTimeUtc = File.GetCreationTimeUtc(@"c:\Demo.txt");
DateTime lastWriteTimeUtc = File.GetLastWriteTimeUtc(@"c:\Demo.txt");
DateTime lastAccessTimeUtc = File.GetLastAccessTimeUtc(@"c:\Demo.txt");
// write file last modification time (local / UTC)
Console.WriteLine(lastWriteTime);     // 5/25/2010 10:10:00 PM
Console.WriteLine(lastWriteTimeUtc);  // 5/25/2010 10:10:00 PM


Get file times using FileInfo class



Use instance of  FileInfo class when you want to get more than one file time or any other information's about the file (like file attributes). Advantage is that you will get all needed information's just in one disk access. See following example.



FileInfo fileInfo = new FileInfo(@"c:\Demo.txt");
// local times
DateTime creationTime = fileInfo.CreationTime;
DateTime lastWriteTime = fileInfo.LastWriteTime;
DateTime lastAccessTime = fileInfo.LastAccessTime;
// UTC times
DateTime creationTimeUtc = fileInfo.CreationTimeUtc;
DateTime lastWriteTimeUtc = fileInfo.LastWriteTimeUtc;
DateTime lastAccessTimeUtc = fileInfo.LastAccessTimeUtc;
// write file last modification time (local / UTC)
Console.WriteLine(lastWriteTime);     // 5/25/2010 10:10:00 PM
Console.WriteLine(lastWriteTimeUtc);  // 5/25/2010 10:10:00 PM


Hope this is useful.

Disabling Browser Cache In C# and ASP.NET

Disable browser caching seems to revolve around how to make it work in IE, Mozilla and other browsers.

Here is the code that will disable browser cache. I have used this and it worked for me.

//Used for disabling page caching 
 HttpContext.Current.Response.Cache.SetExpires(DateTime.UtcNow.AddDays(-1));
 HttpContext.Current.Response.Cache.SetValidUntilExpires(false);
 HttpContext.Current.Response.Cache.SetRevalidation(HttpCacheRevalidation.AllCaches);
// Requires for IE
 HttpContext.Current.Response.Cache.SetCacheability(HttpCacheability.NoCache);
// Requires for Mozilla
 HttpContext.Current.Response.Cache.SetNoStore();

Using SortedList for FileWatcher

I need to do an update and archive files based on a condition in my application. So i have used sortedList to get all the files by processing the thread in my service. For details check my last post on this Multi Threading Using parameters for reference.

So I have updated on of my method DoTXT to achieve this from my previous post.

/// <summary>
        /// Thread 2, Displays that we are in thread 2
        /// </summary>
        public void DoTXT()
        {
            while (_stopThreads == false)
            {
                lock (this)
                {
                    // Write your TXT LOGIC HERE, Moving files and updating database etc
                    Console.WriteLine("Display Thread 2 " + strExt);
                    _threadOutput = "Hello Thread 2";
                    Thread.Sleep(1000);  // simulate a lot of processing
                    string[] Files = Directory.GetFiles("D://ThreadSample//Files//");
                    SortedList sList = new SortedList();
                    if (Files.Length > 0)
                    {
                        foreach (string s in Files)
                        {
                            try
                            {
                                if (Path.GetExtension(s).ToUpper().Equals(strExt))
                                {
                                    try
                                    {
                                        // if you date falls between two dates you need to change the condition while comparing.
                                        // Check the File class for rest of useful methods you require..File.GetLastAccessTime
                                        if (File.GetLastWriteTime(s).ToShortDateString().Equals(strDateTime))
                                        {
                                            DateTime dt = File.GetLastWriteTime(s);
                                            sList.Add(dt, Path.GetFullPath(s));
                                        }
                                    }
                                    catch (Exception ex)
                                    {
                                        throw ex;
                                    }
                                }
                            }
                            catch (Exception ex)
                            {
                                throw ex;
                            }
                        }
                        // Getting information from the SortedList.
                        foreach (string filename in sList.Values)
                        {
                            // Get all these file to zip for archive
                            Console.WriteLine("filename with sorted list." + filename);
                            // Do the db logic..
                        }
                    }
                    // we are in thread #2
                    Console.WriteLine("DoTXT Output --> {0}", _threadOutput + " datetime: -- > " + strDateTime);
                }
            }
        }

Multi Threading using Parameters

Recently i need write a file watcher. So i need to do based on the file types. I have written little bit of code for doing so. Here is the snippet of this.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading;
using System.IO;
using System.Collections;
namespace ThreadSample
{
    class Program
    {
        /// <summary>
        /// The main entry point for the application.
        /// </summary>
        [STAThread]
        static void Main(string[] args)
        {
            //
            // TODO: Add code to start application here
            // 
            DisplayThread objContainer1 = new DisplayThread(".TXT", DateTime.Now.ToShortDateString());
            Thread objThread1 = new Thread(new ThreadStart(objContainer1.DoTXT));
            objThread1.Start();
            DisplayThread objContainer2 = new DisplayThread(".PDF", DateTime.Now.ToShortDateString());
            Thread objThread2 = new Thread(new ThreadStart(objContainer2.DoPDF));
            objThread2.Start();
            Console.ReadLine();
        }
        
    }
    class DisplayThread
    {
        private bool _stopThreads = false;
        public bool StopThreads
        {
            set
            {
                _stopThreads = value;
            }
        }
        private string strExt, strDateTime = "";
        public DisplayThread(string Ext, string datetime)
        {
            strExt = Ext;
            strDateTime = datetime;
        }
        // shared memory variable between the two threads
        private string _threadOutput = "";
        /// <summary>
        /// Thread 1, Displays that we are in thread 1
        /// </summary>
        public void DoPDF( )
        {
            while (_stopThreads == false)
            {
                lock (this)
                {
                    // Write your PDF LOGIC HERE, Moving files and updating database etc
                    Console.WriteLine("Display Thread 1 " + strExt);
                    _threadOutput = "Hello Thread 1";
                    Thread.Sleep(1000);  // simulate a lot of processing
                    string[] Files = Directory.GetFiles("D://ThreadSample//Files//");
                    if (Files.Length > 0)
                    {
                        foreach (string s in Files)
                        {
                            try
                            {
                                if (Path.GetExtension(s).ToUpper().Equals(strExt))
                                {
                                    try
                                    {
                                        // if you date falls between two dates you need to change the condition while comparing.
                                        if (File.GetLastWriteTime(s).ToShortDateString().Equals(strDateTime))
                                        Console.WriteLine(s);
                                        // do the db logic and filemoving etc
                                    }
                                    catch (Exception ex)
                                    {
                                        throw ex;
                                    }
                                }
                            }
                            catch (Exception ex)
                            {
                                throw ex;
                            }
                        }
                    }
                    // we are in thread #1
                    Console.WriteLine("DoPDF Output --> {0}", _threadOutput + " datetime: -- > " + strDateTime);
                }
            }
        }
        /// <summary>
        /// Thread 2, Displays that we are in thread 2
        /// </summary>
        public void DoTXT( )
        {
            while (_stopThreads == false)
            {
                lock (this)
                {
                    // Write your TXT LOGIC HERE, Moving files and updating database etc
                    Console.WriteLine("Display Thread 2 " + strExt);
                    _threadOutput = "Hello Thread 2";
                    Thread.Sleep(1000);  // simulate a lot of processing
                    string[] Files = Directory.GetFiles("D://ThreadSample//Files//");
                    if (Files.Length > 0)
                    {
                        foreach (string s in Files)
                        {
                            try
                            {
                                if (Path.GetExtension(s).ToUpper().Equals(strExt))
                                {
                                    try
                                    {
                                        // if you date falls between two dates you need to change the condition while comparing.
                                        // Check the File class for rest of useful methods you require..File.GetLastAccessTime
                                        if (File.GetLastWriteTime(s).ToShortDateString().Equals(strDateTime))
                                            Console.WriteLine(s);
                                        // do the db logic and filemoving etc
                                    }
                                    catch (Exception ex)
                                    {
                                        throw ex;
                                    }
                                }
                            }
                           
                            catch (Exception ex)
                            {
                                throw ex;
                            }
                        }
                       
                    }
                    // we are in thread #2
                    Console.WriteLine("DoTXT Output --> {0}", _threadOutput + " datetime: -- > " + strDateTime);
                }
            }
        }
    }
}


I need to check files based on the last modified date. so i am using File class to know the GetLastWriteTime. Instead you can also using System.IO.FileInfo to get the information of LastWriteTime.



string[] Files =  Directory.GetFiles("D://ThreadSample//Files//");
System.IO.FileInfo fileInfo = null;
if (Files.Length > 0)
 {
   foreach (string s in Files)
   {
     fileInfo = new System.IO.FileInfo(s);
      try
      {
        DateTime LastWT = fileInfo.LastWriteTime;
        Console.WriteLine("LastWrite Time" + LastWT.ToShortDateString());
       }
       catch (Exception ex)
       {
         throw ex;
       }
    }
}


Happy coding :-)