I basically just have this:
open System.Net
open System.IO
let reader = new StreamReader("students.txt")
let csv = reader.ReadToEnd()
For some reason this throws a File Not Found Exception. It tells me it could not find the file at "C:\Users\Shane\ownCloud\Home\Assign18\Assign18\bin\Debug\students.txt" even though that is exactly where the file is. This happens even if I put the full file path to students.txt, or if I move it to another location.
Anyone have any idea what is going on?