Hi All
Can someone check my code please
I want to add a folder and a file if exist's.
The code below Creates a folder but don't copy the file to that folder, the folder is empty.
The GameList.db file is located at Autoplay Docs.
Can someone check my code please
I want to add a folder and a file if exist's.
The code below Creates a folder but don't copy the file to that folder, the folder is empty.
The GameList.db file is located at Autoplay Docs.
Code:
if Folder.DoesExist("C:\\My Games") then File.Copy("\\AutoPlay\\Docs\\GameList.db", "C:\\My Games", true, true, false, true, nil); else Folder.Create("C:\\My Games"); end
Comment