Mike & Doris Manning
mikedorism at adelphia.net
Mon Mar 21 21:29:10 CST 2005
Through in a DoEvents somewhere to allow the system time to process the request...particularly if working with network folders.... Doris Manning Database Administrator Hargrove Inc. www.hargroveinc.com -----Original Message----- From: accessd-bounces at databaseadvisors.com [mailto:accessd-bounces at databaseadvisors.com] On Behalf Of Darren DICK Sent: Monday, March 21, 2005 10:16 PM To: 'Access Developers discussion and problem solving' Subject: RE: [AccessD] A2203: Determine if a folder exists Hi Doris It looked like it might work But It tells me the Folder Exists even when I delete it??? If I msgbox the line Len(Dir(me.PathToDownloadTo)) It gives me 0 (That's a zero) both before and even after I delete the folder Any suggestions? Many thnks Darren -----Original Message----- From: accessd-bounces at databaseadvisors.com [mailto:accessd-bounces at databaseadvisors.com] On Behalf Of Mike & Doris Manning Sent: Tuesday, 22 March 2005 1:14 PM To: 'Access Developers discussion and problem solving' Subject: RE: [AccessD] A2203: Determine if a folder exists If Len(Dir(me.PathToDownloadTo)) > 0 Then MsgBox "Folder Doesn't Exist" Else MsgBox "Folder exists" End If Doris Manning Database Administrator Hargrove Inc. www.hargroveinc.com -----Original Message----- From: accessd-bounces at databaseadvisors.com [mailto:accessd-bounces at databaseadvisors.com] On Behalf Of Darren DICK Sent: Monday, March 21, 2005 9:01 PM To: 'Access Developers discussion and problem solving' Subject: [AccessD] A2203: Determine if a folder exists Hello all This should be simple but it's causing me pain I have a folder (It does exist) C:\SomeFolder\SomeSubFolder\TheDestination If I type the following code and 'run' it If IsNull(Dir(Me.PathToDownloadTo)) Or Dir(Me.PathToDownloadTo) = "" Then MsgBox "Folder Doesn't Exist" Else MsgBox "Folder exists" End If It still tells me the folder doesn't exist even though it does What is a 'proper' way to tell if a folder exists Many thanks in advance Darren -- AccessD mailing list AccessD at databaseadvisors.com http://databaseadvisors.com/mailman/listinfo/accessd Website: http://www.databaseadvisors.com -- AccessD mailing list AccessD at databaseadvisors.com http://databaseadvisors.com/mailman/listinfo/accessd Website: http://www.databaseadvisors.com -- AccessD mailing list AccessD at databaseadvisors.com http://databaseadvisors.com/mailman/listinfo/accessd Website: http://www.databaseadvisors.com