14 internal class DocumentPath
19 public string Filename {
get;
set; }
23 public string Path {
get;
set; }
30 public DocumentPath(
string filename,
string path)
40 public string GetFullPath()
42 if (Path[Path.Length - 1] == System.IO.Path.AltDirectorySeparatorChar || Path[Path.Length - 1] == System.IO.Path.DirectorySeparatorChar)
44 return System.IO.Path.AltDirectorySeparatorChar + Path + Filename;
46 return System.IO.Path.AltDirectorySeparatorChar + Path + System.IO.Path.AltDirectorySeparatorChar + Filename;