Search:

Type: Posts; User: mkodad

Search: Search took 0.28 seconds.

  1. Re: How to create a folder with spaces written in Java under Linux?

    It's OK, with :

    String[] cmdLine = {"chmod", "777", "My Folder"};
    ...exec(cmdLine);

    thank you a lot :)
  2. Re: How to create a folder with spaces written in Java under Linux?

    Thanks, it is clear know,

    how we use your method for this command :
    "chmod 777 My\ Folder" ?

    that is :
    String[] cmdLine = {"chmod", "777", "My Folder"};
    ...exec(cmdLine);

    Thank you !
  3. Re: How to create a folder with spaces written in Java under Linux?

    I have not understood enough,
    can you give me an example please?
    Thanks for your response
  4. How to create a folder with spaces written in Java under Linux?

    Hello,

    I have a serious problem

    I want to run a Linux command using a Java class with the runtime interface, there is a command to create a folder named eg "My Folder", with a space

    For...
Results 1 to 4 of 4