This is my code, which I want to create method, that accept file and move it in my pc of specified folder. I just make this copy existing file of text to another text file, but I want to move in specified folder, not copy. How to solve this problem?
public static void main(String[] args) {
            InputStream inStream = null;
            OutputStream outStream = null;
    
            try {
    
                File afile = new File("C:\\Users\\anar.memmedov\\Desktop\\test.txt");
    
                File bfile = new File("C:\\Users\\anar.memmedov\\Desktop\\ok\\test3.txt");
    
                inStream = new FileInputStream(afile);
                outStream = new FileOutputStream(bfile);
    
                byte[] buffer = new byte[1024];
    
                int length;
                //copy the file content in bytes
                while ((length = inStream.read(buffer)) > 0) {
    
                    outStream.write(buffer, 0, length);
    
                }
    
                inStream.close();
                outStream.close();
    
                //delete the original file
                afile.delete();
    
                System.out.println("File is copied successful!");
    
            } catch (IOException e) {
                e.printStackTrace();
            }
        }
 
    