FILEUTILS cp/cp_r rm/rm_r on Windows XP

J

James Byrne

I cannot seem to get these commands to work as expected in Windows XP
pro SP2.

Given this

task :update do
FileUtils.cp_r File.join(File.dirname(__FILE__), 'views/xyz/'),
File.join(File.dirname(__FILE__), '../../../app/views')
end

I get this:

unknown file type: C:/path/to/source/views/xyz/

Given this:

task :remove do
FileUtils.rm_rf File.join(File.dirname(__FILE__),
'../../../app/views/xyz') rescue nil
end

I get no errors, but the directory is not removed either. Can someone
point out my error?

Regards,
 
J

James Byrne

James said:
I cannot seem to get these commands to work as expected in Windows XP
pro SP2.

I discovered my error by running these with :verbose => true. As agent
86 would say: "Missed me by that much."

I needed an extra set of '../' to reach the actual target directories.
 
L

Luis Lavena

I discovered my error by running these with :verbose => true. As agent
86 would say: "Missed me by that much."

I needed an extra set of '../' to reach the actual target directories.

I'll suggest you use RAILS_ROOT and join to it instead of guessing
based on the location of your rakefile ;-)

File.join(RAILS_ROOT, 'app/views')

HTH,
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,769
Messages
2,569,580
Members
45,055
Latest member
SlimSparkKetoACVReview

Latest Threads

Top