What is the difference between an absolute and a relative path?
I am asking because I am working on a project for school. Yes this is homework. But, I'm trying to understand a little bit more, though. This is one example of what is being asked. • When the user clicks the “Save” button, write the selected record to the file specified in txtFilePath (absolute path not relative) without truncating the values currently inside. This is what I have, private void button2_Click(object sender, EventArgs e) { if (saveFileDialog1.ShowDialog() == DialogResult.OK) { StreamWriter myWriter = new StreamWriter(saveFileDialog1.FileName); myWriter.Write(txtFilePath.Text);