View Single Post
  #27  
Old 05.02.2020, 16:31
mgpai mgpai is offline
Script Master
 
Join Date: Sep 2013
Posts: 1,533
Default

Quote:
Originally Posted by Fetter Biff View Post
I have added the path to the txt file containing the downloaded files in the new script:
I:\jD-Downloads\dummies.txt
java.io.FileNotFoundException: I:jD-Downloadsdummies.txt (Das System kann die angegebene Datei nicht finden)

Slash character is missing from file path, since it was not escaped. Set it as specified in the script.

Code:
Set path to text file which contain the file names. Use "\\" or "/" as path separators.
Wrong:
Code:
"I:\jD-Downloads\dummies.txt"
Correct:
Code:
"I:\\jD-Downloads\\dummies.txt"
or
Code:
"I:/jD-Downloads/dummies.txt"
Reply With Quote