7 lines
223 B
Text
7 lines
223 B
Text
# Here
|
|
File.rename('input.txt', 'output.txt');
|
|
File.rename('docs', 'mydocs');
|
|
|
|
# Root dir
|
|
File.rename(Dir.root + %f'input.txt', Dir.root + %f'output.txt');
|
|
File.rename(Dir.root + %f'docs', Dir.root + %f'mydocs');
|