No.Am I right?
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
Sub OpenSQLitefile(SN As String)
File.MakeDir(File.DirRootExternal, "\NailFans") '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&"\NailFans", SN)
End If
End Sub
[code\]
An folder has been created successfully. But there is no file inside the folder. The file still located in root.
Andy
Sub OpenSQLitefile(SN As String)
File.MakeDir(File.DirRootExternal, "\NailFans") 'To define a External root Dir here is very important
If File.Exists(File.DirRootExternal & "/\NailFans", SN) = False Then
File.Copy(File.DirAssets, SN, File.DirRootExternal & "/\NailFans", SN)
End If
End Sub