コード例 #1
0
ファイル: LocalFileSystem.cs プロジェクト: tmitchel2/Altitude
        public LocalFileSystem(Path basePath)
        {
            m_basePath = basePath;

            if (!System.IO.Directory.Exists(m_basePath.ToString()))
                System.IO.Directory.CreateDirectory(m_basePath.ToString());
        }
コード例 #2
0
ファイル: Path.cs プロジェクト: tmitchel2/Altitude
 public static Path Combine(Path path1, Path path2)
 {
     return new Path(System.IO.Path.Combine(path1.ToString(), path2.ToString()));
 }