slash and backslash in Ruby slash and backslash in Ruby ruby ruby

slash and backslash in Ruby


In Ruby, there is no difference between the paths in Linux or Windows. The path should be using / regardless of environment. So, for using any path in Windows, replace all \ with /. File#join will work for both Windows and Linux. For example, in Windows:

Dir.pwd=> "C/Documents and Settings/Users/prince"File.open(Dir.pwd + "/Desktop/file.txt", "r")=> #<File...>File.open(File.join(Dir.pwd, "Desktop", "file.txt"), "r")=> #<File...>File.join(Dir.pwd, "Desktop", "file.txt")=> "C/Documents and Settings/Users/prince/Desktop/file.txt"


As long as Ruby is doing the work, / in path names is ok on Windows

Once you have to send a path for some other program to use, especially in a command line or something like a file upload in a browser, you have to convert the slashes to backslashes when running in Windows.

C:/projects/a_project/some_file.rb'.gsub('/', '\\') works a charm. (That is supposed to be a double backslash - this editor sees it as an escape even in single quotes.)

Use something like this just before sending the string for the path name out of Ruby's control.

You will have to make sure your program knows what OS it is running in so it can decide when this is needed. One way is to set a constant at the beginning of the program run, something like this

::USING_WINDOWS = !!((RUBY_PLATFORM =~ /(win|w)(32|64)$/) || (RUBY_PLATFORM=~ /mswin|mingw/))

(I know this works but I didn't write it so I don't understand the double bang...)