Dec 4, 2013 #1 AlastairP Technical User Feb 8, 2011 286 AU When I check if a directory exists, I have been using the DIRECTORY() command However, it does not locate the directory if the folder is hidden Is there another way to do this?
When I check if a directory exists, I have been using the DIRECTORY() command However, it does not locate the directory if the folder is hidden Is there another way to do this?
Dec 4, 2013 #2 DSummZZZ Programmer Oct 24, 2000 4,250 US Take a look at ADIR() instead. -Dave Summers- Even more Fox stuff at: http://www.davesummers.net/foxprolinks.htm Upvote 0 Downvote
Take a look at ADIR() instead. -Dave Summers- Even more Fox stuff at: http://www.davesummers.net/foxprolinks.htm
Dec 4, 2013 Thread starter #3 AlastairP Technical User Feb 8, 2011 286 AU Thanks Dave Upvote 0 Downvote
Dec 4, 2013 #4 mplaza Programmer Nov 23, 2009 135 VE put 1 as second parameter to check for hidden directory: Code: directory(cDirectoryName , 1) Marco Upvote 0 Downvote