コード例 #1
0
        public bool ExistsTest(string filename)
        {
            var fileOps = new FileOps();
            var path    = Path.Combine(_projectPath, filename);

            return(fileOps.Exists(path));
        }