public IFileInfo GetFileInfo(string sPath)
 {
     var info = new StandardFileInfoObject(GetPath(sPath));
     if (info.Loaded)
     {
         return info;
     }
     else
     {
         return null;
     }
 }
Esempio n. 2
0
        public IFileInfo GetFileInfo(string sPath)
        {
            var info = new StandardFileInfoObject(GetPath(sPath));

            if (info.Loaded)
            {
                return(info);
            }
            else
            {
                return(null);
            }
        }