0

私は基本的に file path である2つの異なるパスを取得しています.Spring iocによってxmlを介して注入されます..

private String FilePath1; //it consists path c:\abc folder
private String FilePath2; //it consists of c:\abc\def

次に、2つが等しい場合、条件内に入る必要があることを確認する必要があります。そうでない場合はそうではありません

これを達成する方法を教えてください..

私が試したことは..

if (FilePath1 =! FilePath2)
{

filemove(mcrpFilePath, zipfileName); //i want if two file paths are not wqula then it                                     // should go inside filemove
}
4

1 に答える 1