Rename File (Are Dos Commands Applicable in BF?)

(imported topic written by thesurg3on91)

Hello,

I have to rename my host file. I am using the debugger, but it is passing a syntax error. I know how to do this in DOS, but how do you do it in BF?

dos rename file “c:\windows\system32\drivers\etc\hosts” “hosts.old_11_21_2008”

I also tried?

rename file “c:\windows\system32\drivers\etc\hosts” “hosts.old_11_21_2008”

(imported comment written by jessewk)

try:

move “c:\windows\system32\drivers\etc\hosts” “c:\windows\system32\drivers\etc\hosts.old_11_21_2008”

(imported comment written by BenKus)

Jesse’s will work, but I think this will probably work too:

dos rename “c:\windows\system32\drivers\etc\hosts” “hosts.old_11_21_2008”

Ben