diff --git a/maca_morpho/src/fplm2train_test.c b/maca_morpho/src/fplm2train_test.c
index ba6b4bcde255110a7f744d1a3bac7750ff6fb2c3..20c202c0a57f8c3a5beecb61042afa94d912b250 100644
--- a/maca_morpho/src/fplm2train_test.c
+++ b/maca_morpho/src/fplm2train_test.c
@@ -58,13 +58,13 @@ void generate_train_test(context* ctx)
 	
 	fplm = fopen(ctx->fplm_filename, "r");
 	line_nb = count_line_number_fplm(fplm);
-	train = fopen("../../Files/fplm_train.txt", "w");
+	train = fopen("fplm_train.txt", "w");
 	if(train==NULL)
 	{
 		fprintf(stderr,"Problem with the train file.\n");
 		exit(EXIT_FAILURE);	
 	}
-	test = fopen("../../Files/fplm_test.txt","w");
+	test = fopen("fplm_test.txt","w");
 	if(test==NULL)
 	{
 		fprintf(stderr,"Problem with the test file.\n");