'create NewFolder directory
File.MakeDir(File.DirInternal,"NewFolder")
'copy file to newly created folder
File.Copy(File.DirAssets,"a.txt",File.DirInternal & "/NewFolder", "a.txt")
or
'make sure copy file finished before next code
Wait For (File.CopyAsync(File.DirAssets, "a.txt", File.DirInternal & "/NewFolder", "a.txt")) Complete (Success As Boolean)