Hi, iam having a little bit of a problem. Here is my code right away;
System.IO.File.Move (patch1, patch2);
System.IO.File.Delete(patch1);
So the first line copies the file instead of just moving it into patch2. Because of that i am trying to delete it.Second line is supposed to be deleting the file which is patch1 but it is not. If i add a yield between the lines then it works i dont know why? Its taking long that is longer than a frame so it passes the second line sth? Why is this happening? Any idea?