Thread: javac: file not found

Results 1 to 3 of 3
  1. #1 javac: file not found 
    Registered Member Mastakush's Avatar
    Join Date
    Sep 2012
    Posts
    28
    Thanks given
    0
    Thanks received
    2
    Rep Power
    11
    I understand this is a simple fix, but I don't know how to do it.

    Error:
    Code:
    javac: file not found: src\core\*.java
    Usage: javac <options> <source files>
    use -help for a list of possible options
    Press any key to continue . . .
    I have my environmental variables set up and everything I just need help getting this compiler right.
    Attached image
    Reply With Quote  
     

  2. #2  
    Registered Member
    Zivik's Avatar
    Join Date
    Oct 2007
    Age
    28
    Posts
    4,421
    Thanks given
    891
    Thanks received
    1,527
    Rep Power
    3285
    Just edit the path to the correct one.
    Reply With Quote  
     

  3. #3  
    Registered Member Frostcore's Avatar
    Join Date
    Jul 2014
    Age
    27
    Posts
    6
    Thanks given
    0
    Thanks received
    1
    Rep Power
    0
    Quote Originally Posted by Mastakush View Post
    I understand this is a simple fix, but I don't know how to do it.

    Error:
    Code:
    javac: file not found: src\core\*.java
    Usage: javac <options> <source files>
    use -help for a list of possible options
    Press any key to continue . . .
    I have my environmental variables set up and everything I just need help getting this compiler right.
    If you're only compiling the java files in the core directory then
    Code:
    cd src/core
    javac *.java
    I think it should be src/core/*.java
    That may fix it, of course make sure your working directory is the same directory where src is.
    Last edited by Frostcore; 07-20-2014 at 07:58 PM. Reason: Updated
    Reply With Quote  
     


Thread Information
Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)


User Tag List

Similar Threads

  1. Character file not found please help
    By Orpheus in forum Help
    Replies: 4
    Last Post: 08-08-2010, 04:43 AM
  2. .cfg = file not found.?
    By pwn3r 7 in forum Help
    Replies: 0
    Last Post: 04-05-2010, 09:03 AM
  3. Replies: 1
    Last Post: 03-08-2010, 03:20 PM
  4. .cfg Files Not Found
    By dark legend in forum Help
    Replies: 3
    Last Post: 11-25-2009, 11:08 AM
  5. file not found when compiling
    By -Rave King- in forum Help
    Replies: 4
    Last Post: 01-23-2009, 05:36 AM
Posting Permissions
  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •