Re: Problem with java Rename function in solaris platform.



Thanx Roedy for the reply...But my problem is in the renameTo()
function.I'm giving here the code part:
------------------------------------------
String l_stTMPCopyFile = l_stPERmtpath + "/" + l_stTMPFileNm + ".TMP";
File l_TMPFile = new
File(l_stTMPCopyFile);
boolean l_bTMPCopy =
l_stSrcFileNm.renameTo(l_TMPFile);
........................................................................................................................................

here actually the renameTo function failed while trying to move the
files local disk to the externally mounted disk in Solaris platform.But
in case of moving files within the local disk the function worked
properly...

.