this is a beginner question. I am having a problem running my java program from command line. I am using Windows10. The problem is the following. I have a folder named "folder1", which is located o the dekstop of my computer. So the full path would be C:\Users\Ioanna\Desktop\folder1 Inside that folder I have created a second folder which I named folder2. so the path to this would be C:\Users\Ioanna\Desktop\folder1\folder2
Inside folder2 I have a java file named example.java I want to compile it and run this file with setting the -classpath option through cmd. I dont want to set the path or to add the folder to tha path from environment variables.
I am trying
C:\Users\Ioanna\javac -cp C:\Users\Ioanna\Desktop\folder1\folder2 example.java
but it says file not found. I tried several other alternatives, but I can't seem to find how to compile successfully the program.