Exemplo n.º 1
0
        /// <summary>
        /// Determines the full path for the given local file
        /// </summary>
        /// <param name="filename">local file name</param>
        /// <returns>Full path for the given local file</returns>
        private string MakeFullPath(string filename)
        {
            string fullpath = Tools.MakeFullPath(MakeLocalPath(_docBaseUrl), filename);

            return(fullpath);
        }
Exemplo n.º 2
0
 /// <summary>
 /// Calculates the full path of the file name, using the base directory if set.
 /// </summary>
 /// <param name="filename"></param>
 /// <returns>The full path of the file.</returns>
 private string MakeFullPath(string filename)
 {
     return(Tools.MakeFullPath(Config.FileBaseDirectory, filename));
 }