Sub OpenSQLitefile(SN As String)
File.MakeDir(File.DirRootExternal, fileDir) 'To define a External root Dir here is very important
If File.Exists(File.DirRootExternal, SN) = False Then
File.Copy(File.DirAssets, SN, File.DirRootExternal, SN)
End If
End Sub
[\code]
No data file being put into D:\test
All files are in the root
Andy