I made an program that works on windows. It connects to a ftp server, makes directory and uploads files to ftp.
So I made a ftp server to test it. Whenever I try to make a directory which already exists, 'Cannot created a file when that file already exists' error message appeared.
However, I tried to do the same thing on a customer's site with their own ftp server, and a different error message showed up, 'Create Directory Operation Failed'. No error was there when I try to make non-duplicate directory.
The biggest problem in here is that for the first case, even with the error message, my program keeps executing. However, for the second case, when my program meets the error message, it just ends immediately. I cannot find any difference but those error message for this situation.
Can anybody tell me why are they having different error message? Thanks..