try{ FileInfo finfo = new FileInfo(@\\servername\sharedfolder\file.DAT); if (finfo.Exists) { this.label1.Text += "\n" + finfo.CreationTime; } else { this.label1.Text += "\n" +"file does not exist"; }}catch (System.Exception exep){ this.label1.Text += "\n" + exep.Message; }