Subject Re: path test
From Mervyn Bick <invalid@invalid.invalid>
Date Thu, 22 Apr 2021 12:45:19 +0200
Newsgroups dbase.getting-started

On 2021/04/22 11:18, Charlie wrote:
> Is there a way of testing to see if a path exists?  Only the path which may be empty.
>
> Check to see if 'c:\dbase\test'   not 'c:\dbase\test\something.prg'

set procedure to :duflp:fileex.cc
fx = new fileex()


? if fx.isdir('c:\dbase\test')

Mervyn.