Пример #1
0
 public FullPath(RootPath InRootPath, ScopePath InScopePath)
 {
     mFullPath =
         Path.Combine(InRootPath.ToString(), InScopePath.ToString());
 }
Пример #2
0
        public DirPath(RootPath InRootPath, ScopePath InScopePath)
        {
            string dirPath = Path.Combine(InRootPath.ToString(), InScopePath.ToString());

            mDirPath = dirPath;
        }
Пример #3
0
        public RootPath GetRootPath(ScopePath InScopePath)
        {
            string rootPath = Pather.GetRootPath(mFullPath, InScopePath.ToString());

            return(new RootPath(rootPath));
        }
Пример #4
0
 public ScopePath(ScopePath InDirPath, FileName InFileName)
 {
     mScopePath = Path.Combine(InDirPath.ToString(), InFileName.ToString( ));
 }