Hello,
I have a page I am working on where when a user clicks a button that part of the process is moving a file within the application from one folder to another. It works locally but as soon as I move it to our test box it doesn't seem to work. I wish I could
give an error or anything but it just seems to not function at all throwing no exceptions, etc. I have the function setting some values on a simple label that i know works because as soon as i remove the file.move(string, string) from my code all writes out
as I would expect so i am guessing it hits this line and something happens causing it to fail.
Obvious question is how do i get this file move to occur successfully? Permissions issue or something?
private string MovePOFileToFiled(string fileNameWithExtension)
{
try
{
string testMoveOriginal = @"c:\\sic\\sic\\po\\test&q ...
Go to the complete details ...