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

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

            return(null);
        }
Exemple #2
0
        public IFile OpenFile(string path, bool write)
        {
            var file = new StandardFileObject(this.GetPath(path), write);

            return(file.Loaded ? file : null);
        }
        public IFile OpenFile(string sPath, bool fWrite)
        {
            var file = new StandardFileObject(this.GetPath(sPath), fWrite);

            if (file.Loaded)
            {
                return file;
            }

            return null;
        }