Announcement

Collapse
No announcement yet.

File I/O specific path with drive letter

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • File I/O specific path with drive letter

    How do I open a file using specific path? See example

    var f = new File("Z:/stockdata/indu.csv");


    This works fine, but not what I want.
    var f = new File("indu.csv");

  • #2
    dmd,

    For security reasons, the formula output root (as defined under tools->EFS->settings) is used as the top level directory for any formula I/O.

    If you wanted to write to the Z: partition, you could define Z as your formula output root...then all formula I/O would be relative to that.

    Garth
    Garth

    Comment


    • #3
      Thanks

      Thanks for the quick repsonse.

      Comment

      Working...
      X