Check if a folder exist

jensthomsenjensthomsen Member Posts: 173
Hi - are there any way of telling if a certain folder exist like 'c:\temp\valid\'?

Comments

  • kapamaroukapamarou Member Posts: 1,152
    Look at table:
    File 2000000022

    It's a virtual table...
  • kapamaroukapamarou Member Posts: 1,152
    Declare a variable of type Record on that table.

    THEN:
    MyVar.SETRANGE(Path,'c:\temp\valid\');
    IF MyVar.ISEMPTY THEN ERROR('Path Missing');
    
Sign In or Register to comment.