Yes it is possilbe to change the download folder. You have to specify that in the FirefoxProfile before you initialize the Firefox Driver:
FirefoxOptions options = new FirefoxOptions();
FirefoxProfile profile = new FirefoxProfile();
profile.setPreference("browser.download.dir","your folder");
options.setProfile(profile);
FirefoxDriver driver = new FirefoxDriver(options);