private string get_Name(string f)
{
     int i = f.lastindexof("\\");
     return f.substring(i+1);
}