June 23, 200719 yr How do you make a folder on the users desktop with wpi?and how do you let wpi copy a file from the disk to that created folder? Edited June 23, 200719 yr by Teqskater
July 1, 200719 yr @Teqskater,This code will create the Folder "Test1" on your desktop. Use %UserProfile% for current user and %ALLUSERSPROFILE% for all users. Alt-G will bring up all the available global variables in WPI.MAKEDIR "%UserProfile%\Desktop\Test1"Then use FileCopy to copy over the file you are interested in. This example will copy the "ChangeLog.txt" file to the current users desktop folder "Test1" after it is created in the above example.FILECOPY "%wpipath%\ChangeLog.txt" "%UserProfile%\Desktop\Test1"Another example of just copying a directory can be seen here.
Create an account or sign in to comment