Exemplo n.º 1
0
        private string getFilepath(string folder)
        {
            if (Filename != null)
            {
                return(Path.Combine(folder, Filename));
            }
            string path = AGSProject.GetPath(folder, ID, ".json");

            Filename = Path.GetFileName(path);
            return(path);
        }
Exemplo n.º 2
0
        private string getFolder(string folder)
        {
            if (Folder != null)
            {
                return(Path.Combine(folder, Folder));
            }
            string path = AGSProject.GetPath(folder, ID, "");

            Directory.CreateDirectory(path);
            Folder = getDirectoryName(path);
            return(path);
        }