Search:

Type: Posts; User: copeg

Search: Search took 0.09 seconds.

  1. Re: unable to move xls file(file name has space in between) from input folder to back

    The standard work around for files with spaces is the solution I outlined above (multiple arguments to exec)...on my system (unix) this works as expected (single argument exec does not). Since exec...
  2. Re: unable to move xls file(file name has space in between) from input folder to back

    Check the quotations and verify the correct paths of the src and dest file names. The code below is based upon the variables you referred to in previous posts



    String arguments[] = {"mv",...
  3. Re: unable to move xls file(file name has space in between) from input folder to back

    Pass the arguments to exec as an array as opposed to using a single String command, so the spaces don't confuse things. (quoting or escaping shouldn't be necessary, but that behavior may be platform...
Results 1 to 3 of 3