Tagged Questions
0
votes
1answer
51 views
Copying file from Linux to NAS Share with Java (Apache FileUtils FileCopy)
One of the developers here has written some Java code which uses the Apache FileUtils FileCopy command to copy a csv from a host server (linux) to a file share (EMC NAS).
The share's setup such that ...
0
votes
2answers
55 views
Apache Common IO FileUtils Issue
I am trying to use the FileUtils.writeStringToFile() method of the Apache Commons IO. Every bit of documentation says that I can do this:
FileUtils.writeStringToFile(File, String with data, boolean ...
0
votes
1answer
59 views
Will apache common-io package buffer data before real IO operations?
I want to use apache common-io package, but I am not sure whether there are any buffer strategies in the write/read functions.
For example, in FileUtil class there are functions like
static void ...
1
vote
3answers
8k views
Java - Copy file to another directory using FileUtils and copyFileToDirectory - doesn't work -?
I would like to copy a file from one directory to another using Java and the FileUtils classes of apache org commons.
I wrote up a quick java program to test on my local system. Here is the code. The ...