If you have a problem or need to report a bug please email : support@dsprobotics.com
There are 3 sections to this support area:
DOWNLOADS: access to product manuals, support files and drivers
HELP & INFORMATION: tutorials and example files for learning or finding pre-made modules for your projects
USER FORUMS: meet with other users and exchange ideas, you can also get help and assistance here
NEW REGISTRATIONS - please contact us if you wish to register on the forum
Users are reminded of the forum rules they sign up to which prohibits any activity that violates any laws including posting material covered by copyright
Search found 2 matches
- Fri Jun 14, 2019 11:36 pm
- Forum: General
- Topic: Copy Folder and Sub folder with ruby
- Replies: 3
- Views: 10647
Re: Copy Folder and Sub folder with ruby
thank you trogluddite . robocopy it work

- Fri Jun 14, 2019 8:34 am
- Forum: General
- Topic: Copy Folder and Sub folder with ruby
- Replies: 3
- Views: 10647
Copy Folder and Sub folder with ruby
i try to copy folder and sub with ruby code in external it work
in .rb code is simple
require 'fileutils'
FileUtils.cp_r "C:/Test/.", "C:/out"
when i try in flowstone i cant what my wrong?
require 'FileUtils'
def event i
if i=='click'
FileUtils.cp_r(@src_path, @out_path)
end
end
in .rb code is simple
require 'fileutils'
FileUtils.cp_r "C:/Test/.", "C:/out"
when i try in flowstone i cant what my wrong?
require 'FileUtils'
def event i
if i=='click'
FileUtils.cp_r(@src_path, @out_path)
end
end