Example #1
0
        public LocalFileSystem(Path basePath)
        {
            m_basePath = basePath;

            if (!System.IO.Directory.Exists(m_basePath.ToString()))
                System.IO.Directory.CreateDirectory(m_basePath.ToString());
        }
Example #2
0
 public static Path Combine(Path path1, Path path2)
 {
     return new Path(System.IO.Path.Combine(path1.ToString(), path2.ToString()));
 }