Misc #16396
Updated by sawa (Tsuyoshi Sawada) almost 5 years ago
When I have a script at `D:\Downloads\Ruby 2.5.3\rbL\comp\codeShort.rb` with few other files in In the same folder, the following searches only the source folder where the `.rb` script is located: ``` ruby Find.find('D:') ``` When I have a script at `D:\Downloads\Ruby 2.5.3\rbL\codeShort.rb` with many other files in the same folder, folder , the same code as above searches the entire disk D. To search the entire disk D in the first case, I did this: ``` ruby Find.find('D:/') ``` But I don't understand why the two cases behave differently with the same instruction just because they script are in different directories.