So I'm using File.Copy to create a Backup of a text file everytime the program runs, the files exist, and the paths are fine but File.Copy seemingly won't do anything with said file.
Minimalised, but the code below is what I'm using.
string FilePath = "F:\\Royal Court Bot\\FileRAM.txt";
File.Copy(FilePath, FilePath[..4] + "Backup.txt", true);
When the code runs, no exception is thrown (Checked even with a try-catch) but nothing else seems to happen either.