Hello,
I have a netapp-filer with mount to our CPS-Server.
With
PrintWriter pw = new PrintWriter(new FileWriter("/unixpath/test_unix.txt"));
I can write in a file on the server.
Now I want to write in the same directory but with the windows-path, but
PrintWriter pw = new PrintWriter(new FileWriter("\\\\server\\windowspath\\test_windows.txt"));
doesn't work.
What is wrong?
Best regards
Dana