This repository has been archived on 2024-06-18. You can view files and clone it, but cannot push or open issues or pull requests.
DeskHubSharp/DeskHubSharp.Models/Opener.fs
2018-12-16 14:35:17 -05:00

16 lines
340 B
Forth

module Opener
open System.IO
open System.Diagnostics
let file =
try
use file = File.OpenRead "config.xml"
Some <| file.Read
with
:? FileNotFoundException as ex ->
printfn "%s was not found. Does it exist?" ex.FileName
None
_ -> printfn "Error loading file..."
reraise()