public IFile OpenRemoteFile(string sPath, bool fWrite) {
            var file = new StandardFileObject(GetPath(sPath), fWrite);

            if (file.Loaded) {
                return file;
            } else {
                return null;
            }
        }
Пример #2
0
        public IFile OpenFile(string sPath, bool fWrite)
        {
            var file = new StandardFileObject(GetPath(sPath), fWrite);

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